Skip to content

Commit

Permalink
fix: Logger.ErrorAmxTpl parameter not formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
F1F88 committed Sep 12, 2024
1 parent 0a15438 commit 38f9877
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sourcemod/scripting/include/log4sp.inc
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ public Extension __ext_log4sp =
#endif
};

#define LOG4SP_EXT_VERSION "v1.3.0"
#define LOG4SP_EXT_VERSION "v1.3.1"

2 changes: 1 addition & 1 deletion src/natives/logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ const sp_nativeinfo_t LoggerNatives[] =
{"Logger.Warn", Warn},
{"Logger.WarnAmxTpl", WarnAmxTpl},
{"Logger.Error", Error},
{"Logger.ErrorAmxTpl", Error},
{"Logger.ErrorAmxTpl", ErrorAmxTpl},
{"Logger.Fatal", Fatal},
{"Logger.FatalAmxTpl", FatalAmxTpl},

Expand Down
2 changes: 1 addition & 1 deletion src/smsdk_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
/* Basic information exposed publicly */
#define SMEXT_CONF_NAME "Logging for SourcePawn"
#define SMEXT_CONF_DESCRIPTION "SourcePawn logging utils extension to help developers"
#define SMEXT_CONF_VERSION "1.3.0"
#define SMEXT_CONF_VERSION "1.3.1"
#define SMEXT_CONF_AUTHOR "F1F88"
#define SMEXT_CONF_URL "https://github.com/F1F88/sm-ext-log4sp"
#define SMEXT_CONF_LOGTAG "LOG4SP"
Expand Down

0 comments on commit 38f9877

Please sign in to comment.