TestLogger.D C# (CSharp) Method

D() public method

public D ( string tag, string msg ) : void
tag string
msg string
return void
    public void D(string tag, string msg)
    {
        if (!(_level.HasFlag(SourceLevels.ActivityTracing)))
            return;

        WriteToLog(string.Format ("[DEBUG] {0}: {1}\n", tag, msg));
    }

Same methods

TestLogger::D ( string tag, string msg, Exception tr ) : void