Tagged Questions
4
votes
5answers
205 views
Where to position logging statements
I have the following classes :
class Task
{
public void DoSomething()
{
var s = new Service();
s.First();
s.Second();
s.Third();
}
}
class Service
{
...