You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/Apps/ZeroLevel.Logger/Program.cs

16 lines
362 B

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

Powered by TurnKey Linux.