diff options
Diffstat (limited to 'rpmio/rpmlua.c')
-rw-r--r-- | rpmio/rpmlua.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmio/rpmlua.c b/rpmio/rpmlua.c index 8e6841d4e..53c0cf908 100644 --- a/rpmio/rpmlua.c +++ b/rpmio/rpmlua.c @@ -530,7 +530,7 @@ int rpmluaRunScript(rpmlua _lua, const char *script, const char *name) lua_pop(L, 1); ret = -1; } else if (lua_pcall(L, 0, 0, 0) != 0) { - rpmlog(RPMLOG_ERR, _("lua script failed: %s\n"), + rpmlog(RPMLOG_WARNING, _("lua script failed: %s\n"), lua_tostring(L, -1)); lua_pop(L, 1); ret = -1; |