diff --git a/code/modules/admin/admin_ranks.dm b/code/modules/admin/admin_ranks.dm index 8d1312b0e68e..3467bd4276b7 100644 --- a/code/modules/admin/admin_ranks.dm +++ b/code/modules/admin/admin_ranks.dm @@ -66,7 +66,7 @@ GLOBAL_LIST_EMPTY(admin_ranks) //list of all ranks with associated rights //Clear profile access for(var/admin in world.GetConfig("admin")) - debug_log("Clearing [admin] from APP/admin.") + log_debug("Clearing [admin] from APP/admin.") world.SetConfig("APP/admin", admin, null) load_admin_ranks() diff --git a/code/modules/admin/holder2.dm b/code/modules/admin/holder2.dm index b08ab76532cd..b1ba6709b258 100644 --- a/code/modules/admin/holder2.dm +++ b/code/modules/admin/holder2.dm @@ -32,7 +32,7 @@ GLOBAL_PROTECT(href_token) GLOB.admin_datums[ckey] = src extra_titles = new_extra_titles if(rights & R_PROFILER) - debug_log("Adding [ckey] to APP/admin.") + log_debug("Adding [ckey] to APP/admin.") world.SetConfig("APP/admin", ckey, "role=admin") // Letting admins edit their own permission giver is a poor idea