TrafficLog() public static method

Store a traffic log to a file
public static TrafficLog ( string text ) : void
text string
return void
 public override void TrafficLog(string text, bool incoming)
 {
     if (incoming)
     {
         Core.TrafficLog(IRCNetwork.Nickname + " << " + text);
     }
     else
     {
         Core.TrafficLog(IRCNetwork.Nickname + " >> " + text);
     }
 }