1- using System ;
2- using System . Collections . Generic ;
3- using System . Globalization ;
4- using System . Text ;
5-
61namespace LogExpert ;
72
83/// <summary>
@@ -17,29 +12,35 @@ public interface ILogExpertLogger
1712 /// The logger in LogExpert will automatically add the class and the method name of the caller.
1813 /// </summary>
1914 /// <param name="msg">A message to be logged.</param>
20- void Info ( string msg ) ;
15+ void Info ( string msg ) ;
16+
17+ /// <summary>
18+ /// Writes an informational message using the specified format provider.
19+ /// </summary>
20+ /// <param name="formatProvider">An object that supplies culture-specific formatting information for the message. Cannot be null.</param>
21+ /// <param name="msg">The informational message to write. Cannot be null.</param>
2122 void Info ( IFormatProvider formatProvider , string msg ) ;
2223
2324 /// <summary>
2425 /// Logs a message on DEBUG level to LogExpert#s log file. The logfile is only active in debug builds.
2526 /// The logger in LogExpert will automatically add the class and the method name of the caller.
2627 /// </summary>
2728 /// <param name="msg">A message to be logged.</param>
28- void Debug ( string msg ) ;
29+ void Debug ( string msg ) ;
2930
3031 /// <summary>
3132 /// Logs a message on WARN level to LogExpert#s log file. The logfile is only active in debug builds.
3233 /// The logger in LogExpert will automatically add the class and the method name of the caller.
3334 /// </summary>
3435 /// <param name="msg">A message to be logged.</param>
35- void LogWarn ( string msg ) ;
36+ void LogWarn ( string msg ) ;
3637
3738 /// <summary>
3839 /// Logs a message on ERROR level to LogExpert#s log file. The logfile is only active in debug builds.
3940 /// The logger in LogExpert will automatically add the class and the method name of the caller.
4041 /// </summary>
4142 /// <param name="msg">A message to be logged.</param>
42- void LogError ( string msg ) ;
43+ void LogError ( string msg ) ;
4344
4445 #endregion
4546}
0 commit comments