-
Notifications
You must be signed in to change notification settings - Fork 4
Home
catalingavan edited this page Nov 24, 2021
·
27 revisions
Welcome to KissLog wiki.
This section contains documentation and examples of using KissLog framework.
If you are in trouble, or if you have questions or suggestions, please open an issue.
using KissLog;
namespace ConsoleApp
{
class class Program
{
static void Main(string[] args)
{
KissLogConfiguration.Listeners
.Add(new SendFeedbackListener());
var logger = new Logger();
try
{
logger.Info("Start here --->");
}
finally
{
Logger.NotifyListeners(logger);
}
}
}
}