TestLogger.I C# (CSharp) Method

I() public method

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

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

Same methods

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