Duality.Log.RemoveOutput C# (CSharp) Method

RemoveOutput() public method

Removes a certain output.
public RemoveOutput ( ILogOutput writer ) : void
writer ILogOutput
return void
        public void RemoveOutput(ILogOutput writer)
        {
            this.strOut.Remove(writer);
        }

Usage Example

Esempio n. 1
0
 public static void RemoveGlobalOutput(ILogOutput output)
 {
     logGame.RemoveOutput(output);
     logCore.RemoveOutput(output);
     logEditor.RemoveOutput(output);
 }