Created
August 21, 2012 04:31
-
-
Save logicbomb/3411581 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public enum CoreLogLevel | |
{ | |
Debug, Error, Fatal, Info, Warn | |
} | |
public interface ICoreLogService | |
{ | |
void Start(Uri saveLocation, int persistAfterThisManyMessagesHaveBeenLogged = 1); | |
void Stop(); | |
void LogMessage(CoreLogLevel level, ILoggingSource source, string msg, params object[] formatParameters); | |
void LogMessage(CoreLogLevel level, ILoggingSource source, Exception e, string msg, params object[] formatParameters); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment