added debug output for fopen failure

--HG--
branch : sourcemod-1.0.x
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/branches/sourcemod-1.0.x%402022
This commit is contained in:
David Anderson 2008-04-10 17:15:51 +00:00
parent e956248f29
commit b75a4d07be

View File

@ -339,7 +339,7 @@ ParseConfigs()
if (!FileExists(configPath))
{
LogError("Unable to locate admin menu groups file, no groups loaded.");
LogError("Unable to locate admin menu groups file: %s", configPath);
return;
}
@ -620,4 +620,4 @@ public Menu_Selection(Handle:menu, MenuAction:action, param1, param2)
//client exited we should go back to submenu i think
DisplayTopMenu(hAdminMenu, param1, TopMenuPosition_LastCategory);
}
}
}