summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rpmio/macro.c2
-rw-r--r--rpmio/rpmlua.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/rpmio/macro.c b/rpmio/macro.c
index aeedb4725..0876ea88e 100644
--- a/rpmio/macro.c
+++ b/rpmio/macro.c
@@ -472,7 +472,7 @@ doShellEscape(MacroBuf mb, const char * cmd, size_t clen)
int rc = 0;
int c;
- rpmlog(RPMLOG_INFO, _("Refusing to run shell code: %s\n"), cmd);
+ rpmlog(RPMLOG_WARNING, _("Refusing to run shell code: %s\n"), cmd);
mbAppendStr(mb, "UNEXPANDEDSHELLSCRIPT");
#if 0
rc = expandThis(mb, cmd, clen, &buf);
diff --git a/rpmio/rpmlua.c b/rpmio/rpmlua.c
index ec41b0227..49ae7a0aa 100644
--- a/rpmio/rpmlua.c
+++ b/rpmio/rpmlua.c
@@ -517,7 +517,7 @@ int rpmluaRunScript(rpmlua _lua, const char *script, const char *name)
lua_State *L = lua->L;
int ret = 0;
#define LUA_OUTPUT "UNEXPANDEDLUASCRIPT"
- rpmlog(RPMLOG_INFO, _("Refusing to run lua code: %s\n"), script);
+ rpmlog(RPMLOG_WARNING, _("Refusing to run lua code: %s\n"), script);
lua->printbuf->buf = xcalloc(1, sizeof(LUA_OUTPUT));
strcpy(lua->printbuf->buf, LUA_OUTPUT);
#if 0