We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a638a09 commit 18ed67bCopy full SHA for 18ed67b
src/service-app/classes/TuxedoControlCenterDaemon.ts
@@ -132,7 +132,11 @@ export class TuxedoControlCenterDaemon extends SingleProcess {
132
133
public catchError(err: Error) {
134
this.logLine('Tccd Exception');
135
- const errorLine = err.name + ': ' + err.message;
+ let errorLine = err.name + ': ' + err.message;
136
+ let stack = err.stack;
137
+ if(stack !== undefined) {
138
+ errorLine += '\n\nStack Trace:\n' + stack;
139
+ }
140
this.logLine(errorLine);
141
if (this.started) {
142
this.onExit();
0 commit comments