TestLogger.W C# (CSharp) Méthode

W() public méthode

public W ( string tag, System tr ) : void
tag string
tr System
Résultat void
    public void W(string tag, System.Exception tr)
    {
        if (!(_level.HasFlag(SourceLevels.Warning)))
            return;

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

Same methods

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