util: fixed hard-coded pipe name
This commit is contained in:
parent
a96a3c9d87
commit
3419aeb44b
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue