aboutsummaryrefslogtreecommitdiff
path: root/src/server/DashSession/DashSessionAgent.ts
diff options
context:
space:
mode:
authorSam Wilkins <samwilkins333@gmail.com>2020-01-11 15:08:26 -0500
committerSam Wilkins <samwilkins333@gmail.com>2020-01-11 15:08:26 -0500
commit54a241ff71abc07a5dbdebce1b614f1024a767e6 (patch)
tree15e2748c0ecf97bd96b459d8b63148ebdda68a09 /src/server/DashSession/DashSessionAgent.ts
parentf1a5faed19cc3f924a9304fd0bc4a1b3bc655bf8 (diff)
final session cleanup
Diffstat (limited to 'src/server/DashSession/DashSessionAgent.ts')
-rw-r--r--src/server/DashSession/DashSessionAgent.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/DashSession/DashSessionAgent.ts b/src/server/DashSession/DashSessionAgent.ts
index 3c98c1e9d..fe7cdae88 100644
--- a/src/server/DashSession/DashSessionAgent.ts
+++ b/src/server/DashSession/DashSessionAgent.ts
@@ -11,7 +11,7 @@ import { resolve } from "path";
import { AppliedSessionAgent, ExitHandler } from "../session/agents/applied_session_agent";
import { Monitor } from "../session/agents/monitor";
import { ServerWorker } from "../session/agents/server_worker";
-import { MessageHandler } from "../session/utilities/ipc";
+import { MessageHandler } from "../session/agents/promisified_ipc_manager";
/**
* If we're the monitor (master) thread, we should launch the monitor logic for the session.
@@ -110,7 +110,7 @@ export class DashSessionAgent extends AppliedSessionAgent {
content: this.generateCrashInstructions(crashCause)
});
if (error) {
- this.sessionMonitor.mainLog(red(`dispatch failure @ ${notificationRecipient} (${yellow(error.message)})`));
+ this.sessionMonitor.mainLog(red(`dispatch failure @ ${notificationRecipient} ${yellow(`(${error.message})`)}`));
mainLog(red("distribution of crash notification experienced errors"));
} else {
mainLog(green("successfully distributed crash notification to recipients"));