TestLogger.I C# (CSharp) 메소드

I() 공개 메소드

public I ( string tag, string msg ) : void
tag string
msg string
리턴 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