TestLogger.I C# (CSharp) Method

I() public method

public I ( string tag, string msg, System tr ) : void
tag string
msg string
tr System
return void
    public void I(string tag, string msg, System.Exception tr)
    {
        if (!(_level.HasFlag(SourceLevels.Information)))
            return;

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

Same methods

TestLogger::I ( string tag, string msg ) : void