I beg to differ with opinions raised here about the usefulness of logging, and about the problems of using a fixed template for each function.
Base on the Jerry Dennany's article TraceListeners and Reflection, I've extended the Object Guy's logging framework to produce an indented trace of my code. This can further be processed by logging tools but I don't bother - It's sometimes very constructive just to scan the results.
Of course, using aspect programming is the correct thing to do, but I never got to learning it. so I'm uisng the following snippet inside each and every of my methods to log, to verify each method's arguments, and to catch exceptions (which, by default, are re-thrown)
<CodeSnippet Format="1.0.0">
<Header>
<Title>Canonic</Title>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>ClassName</ID>
<ToolTip>Replace with the name of the class.</ToolTip>
<Default>ClassName</Default>
</Literal>
<Literal>
<ID>MethodName</ID>
<ToolTip>Replace with the name of the method.</ToolTip>
<Default>MethodName</Default>
</Literal>
<Literal>
<ID>FirstArgName</ID>
<ToolTip>Replace with the name of the first argument.</ToolTip>
<Default>FirstArgName</Default>
</Literal>
<Literal>
<ID>SecondArgName</ID>
<ToolTip>Replace with the name of the second argument.</ToolTip>
<Default>SecondArgName</Default>
</Literal>
<Literal>
<ID>ResultName</ID>
<ToolTip>Replace with the name of the result.</ToolTip>
<Default>ResultName</Default>
</Literal>
</Declarations>
<Code Language="CSharp">
<![CDATA[ Logger.LogMethod("$FirstArgName$", $FirstArgName$,"$SecondArgName$", $SecondArgName$);
try
{
Validator.Verify($FirstArgName$, $SecondArgName$);
//VerifyFields();
Logger.LogReturn($ResultName$);
return $ResultName$;
}
#region Exception
catch (Exception exp)
{
Logger.LogException("$ClassName$.$MethodName$", exp);
throw;
}
#endregion Exception
]]>
</Code>
</Snippet>