diff --git a/r5dev/engine/server/sv_rcon.cpp b/r5dev/engine/server/sv_rcon.cpp
index 74e68818..998f435f 100644
--- a/r5dev/engine/server/sv_rcon.cpp
+++ b/r5dev/engine/server/sv_rcon.cpp
@@ -377,8 +377,8 @@ bool CRConServer::Comparator(std::string svPassword) const
 	if (sv_rcon_debug->GetBool())
 	{
 		DevMsg(eDLL_T::SERVER, "+---------------------------------------------------------------------------+\n");
-		DevMsg(eDLL_T::SERVER, "] Server: '%s'[\n", m_svPasswordHash.c_str());
-		DevMsg(eDLL_T::SERVER, "] Client: '%s'[\n", svPassword.c_str());
+		DevMsg(eDLL_T::SERVER, "[ Server: '%s']\n", m_svPasswordHash.c_str());
+		DevMsg(eDLL_T::SERVER, "[ Client: '%s']\n", svPassword.c_str());
 		DevMsg(eDLL_T::SERVER, "+---------------------------------------------------------------------------+\n");
 	}
 	if (std::memcmp(svPassword.data(), m_svPasswordHash.data(), SHA256::DIGEST_SIZE) == 0)