summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-09-20 20:42:24 -0300
committerJesusaves <cpntb1@ymail.com>2021-09-20 20:42:24 -0300
commit1cbda9f3c7dd27674a10f11044b325454c1d8fb4 (patch)
tree1af46b88670dee6926a469c3e841d2674fed36c3
parent50842b7eecde5d0f0152256f07d6504d557a699b (diff)
downloadevol-hercules-1cbda9f3c7dd27674a10f11044b325454c1d8fb4.tar.gz
evol-hercules-1cbda9f3c7dd27674a10f11044b325454c1d8fb4.tar.bz2
evol-hercules-1cbda9f3c7dd27674a10f11044b325454c1d8fb4.tar.xz
evol-hercules-1cbda9f3c7dd27674a10f11044b325454c1d8fb4.zip
Update consoleinfo wrapper because the whole purpose of it is being caught by syslog
-rw-r--r--src/emap/script_buildins.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emap/script_buildins.c b/src/emap/script_buildins.c
index 0163a6a..2bd25f1 100644
--- a/src/emap/script_buildins.c
+++ b/src/emap/script_buildins.c
@@ -3120,7 +3120,8 @@ BUILDIN(consoleinfo)
return false;
}
- ShowNotice("script notice : %d %d : %s\n", st->rid, st->oid, StrBuf->Value(&buf));
+ ShowDebug("script notice : %d %d : %s\n", st->rid, st->oid, StrBuf->Value(&buf));
+ ShowNotice("%s\n", StrBuf->Value(&buf));
StrBuf->Destroy(&buf);
script_pushint(st, 1);
return true;