TestLogger.V C# (CSharp) Method

V() public method

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

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

Same methods

TestLogger::V ( string tag, string msg, Exception tr ) : void