And to log something from code to an existing tracer, use something like
TraceHelper.WriteLineIf(TraceHelper.PersistenceExecutionSwitch.TraceInfo, "method name", "what you want to log");
where TraceHelper.PersistenceExecutionSwitch is the trace switch you want to log to and the TraceInfo the severity you want to limit the trace on.