Remove possibly breaking span

This commit is contained in:
MTRNord
2023-09-03 11:36:53 +02:00
parent 88b4b1e44e
commit f890c59974
2 changed files with 1 additions and 1 deletions
+1
View File
@@ -118,6 +118,7 @@ export default class ManagementRoomOutput {
if (this.config.verboseLogging || LogLevel.INFO.includes(level)) {
let clientMessage = message;
if (level === LogLevel.WARN) clientMessage = `⚠ | ${message}`;
// TODO: Add traceID here somehow but make sure we get it from upstream if it is critical
if (level === LogLevel.ERROR) clientMessage = `‼ | ${message}`;
const client = this.client;
@@ -202,7 +202,6 @@ export class InterfaceCommand<ExecutorType extends BaseFunction = BaseFunction>
return await this.argumentListParser.parse(stream);
}
@trace
public invoke(context: ThisParameterType<ExecutorType>, ...args: Parameters<ExecutorType>): ReturnType<ExecutorType> {
return this.command.apply(context, args);
}