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 033710c commit dfb9bc6Copy full SHA for dfb9bc6
src/service-app/classes/TuxedoControlCenterDaemon.ts
@@ -134,7 +134,11 @@ export class TuxedoControlCenterDaemon extends SingleProcess {
134
135
public catchError(err: Error) {
136
this.logLine('Tccd Exception');
137
- const errorLine = err.name + ': ' + err.message;
+ let errorLine = err.name + ': ' + err.message;
138
+ let stack = err.stack;
139
+ if(stack !== undefined) {
140
+ errorLine += '\n\nStack Trace:\n' + stack;
141
+ }
142
this.logLine(errorLine);
143
if (this.started) {
144
this.onExit();
0 commit comments