util: fixed hard-coded pipe name

This commit is contained in:
alterNERDtive 2020-10-25 20:26:02 +01:00
parent a96a3c9d87
commit 3419aeb44b

View file

@ -178,7 +178,7 @@ namespace alterNERDtive.util
public PipeServer<Thing> Run()
{
Log.Debug("Starting RATSIGNAL pipe …");
Log.Debug($"Starting “{PipeName}” pipe …");
if (!Running)
{
Running = true;
@ -189,7 +189,7 @@ namespace alterNERDtive.util
public PipeServer<Thing> Stop()
{
Log.Debug("Stopping RATSIGNAL pipe …");
Log.Debug($"Stopping “{PipeName}” pipe …");
if (Running)
{
Running = false;