TestLogger.E C# (CSharp) Method

E() public method

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

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

Same methods

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