Brunet.Services.MapReduce.MapReduceTask.Log C# (CSharp) Метод

Log() защищенный Метод

protected Log ( string format_string ) : void
format_string string
Результат void
    protected void Log(string format_string, params object[] format_args) {
      if (LogEnabled) {
        string s = String.Format(format_string, format_args);
        ProtocolLog.Write(ProtocolLog.MapReduce, 
                          String.Format("{0}: {1}, {2}", _node.Address, this.GetType(), s));
      }
    }