namespace ZeroLevel.Logger { class Program { static void Main(string[] args) { Bootstrap.Startup(args) .EnableConsoleLog() .Run() .WaitWhileStatus(ZeroServiceStatus.Running) .Stop(); Bootstrap.Shutdown(); } } }