コード例 #1
0
 /// <summary>
 /// Creates an <see cref="Akka.Event.LogLevel.InfoLevel"/> log entry with the specific template and arguments.
 /// </summary>
 /// <param name="template">The template being rendered and logged.</param>
 /// <param name="arg1">The first argument that fills in the corresponding template placeholder.</param>
 /// <param name="arg2">The second argument that fills in the corresponding template placeholder.</param>
 /// <param name="arg3">The second argument that fills in the corresponding template placeholder.</param>
 internal void LogInfo(string template, object arg1, object arg2, object arg3)
 {
     CurrentInfoLogger.LogInfo(template, arg1, arg2, arg3);
 }
コード例 #2
0
 /// <summary>
 /// Creates an <see cref="Akka.Event.LogLevel.InfoLevel"/> log entry with the specific message.
 /// </summary>
 /// <param name="message">The message being logged.</param>
 internal void LogInfo(string message)
 {
     CurrentInfoLogger.LogInfo(message);
 }