Skip to content

Commit

Permalink
Readd logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Bara committed May 2, 2018
1 parent 8dc3475 commit 81c52f2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions addons/sourcemod/scripting/ttt/core/sql.sp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ public void SQL_AlterKarmaColumn(Handle owner, Handle hndl, const char[] error,
{
LateLoadClients(false);
}
else
{
LogError("(SQL_AlterKarmaColumn) Query failed: %s", error);
}

return;
}
Expand Down
4 changes: 4 additions & 0 deletions addons/sourcemod/scripting/ttt/ttt_shop.sp
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,10 @@ public void SQL_AlterCreditsColumn(Handle owner, Handle hndl, const char[] error
{
LoadClientCredits(GetClientOfUserId(userid));
}
else
{
LogError("(SQL_AlterCreditsColumn) Query failed: %s", error);
}

return;
}
Expand Down

0 comments on commit 81c52f2

Please sign in to comment.