mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-06-04 14:51:21 +00:00
Remove possibly breaking span
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user