Fix missing space in logging format

pull/330/head
Ryan Rupp 2019-08-13 23:30:53 -05:00
parent 47a3ca964a
commit 502ed969fc
1 changed files with 1 additions and 1 deletions

View File

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