Ejemplo n.º 1
0
 internal void Log(string s, bool suppressPrint = false)
 {
     if (userLog == null)
     {
         userLog = new IO.Logging.LogFile(Name, subdirectory: Name, timestamped: true);
     }
     userLog.Log(s, suppressPrint);
 }
Ejemplo n.º 2
0
 internal void MessageReceived(IO.Message m)
 {
     InitializeChannelLogs();
     ChannelLog.Log(m);
     if (m.sourceUser.IsChannelOp(this))
     {
         ChannelModLog.Log(m, true);
     }
 }