Console output prefix

This commit is contained in:
Vortrex
2023-02-07 15:10:49 -06:00
parent 30120d0640
commit b6ffbf0381
58 changed files with 159 additions and 159 deletions

View File

@@ -8,7 +8,7 @@
// ===========================================================================
function initDeveloperScript() {
logToConsole(LOG_INFO, "[AGRP.Developer]: Initializing developer script ...");
logToConsole(LOG_INFO, "[V.RP.Developer]: Initializing developer script ...");
// Use GTAC command handlers for these since they need to be available on console
//addCommandHandler("sc", executeServerCodeCommand);
@@ -17,7 +17,7 @@ function initDeveloperScript() {
//addCommandHandler("allcmd", simulateCommandForAllPlayersCommand);
//addCommandHandler("addloglvl", setServerLogLevelCommand);
logToConsole(LOG_INFO, "[AGRP.Developer]: Developer script initialized successfully!");
logToConsole(LOG_INFO, "[V.RP.Developer]: Developer script initialized successfully!");
return true;
}