Merge pull request #330 from ryanrupp/fix-duplicate-startup-logging

Fix duplicate startup logging
pull/331/head
Oleg Nenashev 2019-08-17 00:41:52 +02:00 committed by GitHub
commit 1d898ebbd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

View File

@ -245,9 +245,6 @@ namespace winsw
ExtensionManager.LoadExtensions();
ExtensionManager.FireOnWrapperStarted();
LogEvent("Starting " + _descriptor.Executable + ' ' + startarguments);
Log.Info("Starting " + _descriptor.Executable + ' ' + startarguments);
LogHandler executableLogHandler = CreateExecutableLogHandler();
StartProcess(_process, startarguments, _descriptor.Executable, executableLogHandler, true);
ExtensionManager.FireOnProcessStarted(_process);

View File

@ -66,7 +66,7 @@ namespace winsw.Util
bool successful = SigIntHelper.SendSIGINTToProcess(proc, stopTimeout);
if (successful)
{
Logger.Info("SIGINT to" + pid + " successful");
Logger.Info("SIGINT to " + pid + " successful");
}
else
{