]> granicus.if.org Git - apache/commitdiff
Remove some extra logging, and make it more debug instead of warning.
authorPaul Querna <pquerna@apache.org>
Sun, 21 Dec 2008 22:25:22 +0000 (22:25 +0000)
committerPaul Querna <pquerna@apache.org>
Sun, 21 Dec 2008 22:25:22 +0000 (22:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@728535 13f79535-47bb-0310-9956-ffa450edef68

modules/lua/lua_vmprep.c

index 1623590cb75a0b2df768bb424425c177fd8e03f9..e3cf24240fd958d1e8e76b0548a5759451b7022a 100644 (file)
@@ -265,10 +265,9 @@ lua_State *apl_get_lua_state(apr_pool_t *lifecycle_pool,
 {
 
     lua_State *L;
-    ap_log_perror(APLOG_MARK, APLOG_WARNING, 0, lifecycle_pool,
-                  "obtaining lua_State");
+
     if (!apr_pool_userdata_get((void **) &L, spec->file, lifecycle_pool)) {
-        ap_log_perror(APLOG_MARK, APLOG_WARNING, 0, lifecycle_pool,
+        ap_log_perror(APLOG_MARK, APLOG_DEBUG, 0, lifecycle_pool,
                       "creating lua_State with file %s", spec->file);
         /* not available, so create */
         L = luaL_newstate();