Exemplo n.º 1
0
 /// <summary>
 /// Write the given warning progress message to the log output
 /// </summary>
 /// <param name="total">Total count for progress</param>
 /// <param name="current">Current count for progres</param>
 /// <param name="output">String to be written log</param>
 public void Warning(long total, long current, string output = null)
 {
     LoggerImpl.Warning(instance, total, current, output);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Write the given exception as a warning to the log output
 /// </summary>
 /// <param name="ex">Exception to be written log</param>
 /// <param name="output">String to be written log</param>
 /// <returns>True if the output could be written, false otherwise</returns>
 public void Warning(Exception ex, string output = null)
 {
     LoggerImpl.Warning(this.instance, ex, output);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Write the given string as a warning to the log output
 /// </summary>
 /// <param name="output">String to be written log</param>
 /// <returns>True if the output could be written, false otherwise</returns>
 public void Warning(string output)
 {
     LoggerImpl.Warning(this.instance, output);
 }