diff --git a/src/CommandsManager.cs b/src/CommandsManager.cs index 7f16591..a5045b6 100644 --- a/src/CommandsManager.cs +++ b/src/CommandsManager.cs @@ -55,7 +55,7 @@ public class CommandsManager : ICommandsManager var command = GetCommandAndArgsFromString(input); if (command is null) { - CogwheelConsole.LogError($"[COGWHEEL] Command not found: {input}"); + CogwheelConsole.LogError($"Command not found: {input}"); return false; } @@ -74,11 +74,11 @@ public class CommandsManager : ICommandsManager return ExecuteCommand(CurrentContext, command.Value); } - CogwheelConsole.LogWarning($"[COGWHEEL] Command '{command.Value.Item1.Name}' is not static and no valid context was provided, searching for first registered context of type '{command.Value.Item1.Method.DeclaringType}'"); + CogwheelConsole.LogWarning($"Command '{command.Value.Item1.Name}' is not static and no valid context was provided, searching for first registered context of type '{command.Value.Item1.Method.DeclaringType}'"); context = GetFirstValidRegisteredContext(command.Value.Item1.Method.DeclaringType); if (context is null) { - CogwheelConsole.LogError($"[COGWHEEL] No context of type '{command.Value.Item1.Method.DeclaringType}' found"); + CogwheelConsole.LogError($"No context of type '{command.Value.Item1.Method.DeclaringType}' found"); return false; } @@ -229,11 +229,11 @@ public class CommandsManager : ICommandsManager { RegisteredObjectInstances[uniqueId] = obj; RegisteredObjectGuids[obj] = uniqueId; - CogwheelConsole.Log($"[COGWHEEL] Registered object with ID {uniqueId}"); + CogwheelConsole.Log($"Registered object with ID {uniqueId}"); } else { - CogwheelConsole.LogWarning($"[COGWHEEL] Object with ID {uniqueId} is already registered"); + CogwheelConsole.LogWarning($"Object with ID {uniqueId} is already registered"); } } }