diff --git a/events/client/interactionCreate.js b/events/client/interactionCreate.js
index af09d61d..cc7ee937 100644
--- a/events/client/interactionCreate.js
+++ b/events/client/interactionCreate.js
@@ -83,7 +83,7 @@ export default {
 			});
 
 			if (!isOptOut) {
-				console.log(`\x1b[33m${commandName}\x1b[0m with args ${JSON.stringify(args)}`);
+				console.log(`\x1b[33m⤷\x1b[0m with args ${JSON.stringify(args)}`);
 			}
 
 			await command.execute(interaction, args, client);
diff --git a/events/client/messageCreate.js b/events/client/messageCreate.js
index fc7c7068..e7924dc4 100644
--- a/events/client/messageCreate.js
+++ b/events/client/messageCreate.js
@@ -405,8 +405,8 @@ export default {
 				args[payloadName] = payload;
 			}
 
-			if (!isOptOut) {
-				console.log(`\x1b[33m${commandName}\x1b[0m with args ${JSON.stringify(args)}`);
+			if (!isOptOut && argsLength > 0) {
+				console.log(`\x1b[33m⤷\x1b[0m with args ${JSON.stringify(args)}`);
 			}
 
 			await command.execute(message, args, client);