diff --git a/src/EllieBot/Modules/Administration/ServerLog/ServerLogCommandService.cs b/src/EllieBot/Modules/Administration/ServerLog/ServerLogCommandService.cs
index 3b6cd3e..cb8fb15 100644
--- a/src/EllieBot/Modules/Administration/ServerLog/ServerLogCommandService.cs
+++ b/src/EllieBot/Modules/Administration/ServerLog/ServerLogCommandService.cs
@@ -494,6 +494,9 @@ public sealed class LogCommandService : ILogCommandService, IReadyExecutor
                     .WithFooter(CurrentTime(usr.Guild))
                     .WithOkColor();
 
+                if (!string.IsNullOrWhiteSpace(reason))
+                    embed.WithDescription(reason);
+
                 await _sender.Response(logChannel).Embed(embed).SendAsync();
             }
             catch