]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
change debug level
authorBrian West <brian@freeswitch.org>
Fri, 22 Jan 2010 02:18:15 +0000 (02:18 +0000)
committerBrian West <brian@freeswitch.org>
Fri, 22 Jan 2010 02:18:15 +0000 (02:18 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16450 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_odbc.c

index 1be5ba50e0576791e7dc7edecca1b7a4135209f8..b880ab7888d49ae0e30653cd0d8bdace96aaf6c1 100644 (file)
@@ -116,7 +116,7 @@ SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_disconnect(switch_odbc_h
        if (handle->state == SWITCH_ODBC_STATE_CONNECTED) {
                result = SQLDisconnect(handle->con);
                if (result == SWITCH_ODBC_SUCCESS) {
-                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Disconnected %d from [%s]\n", result, handle->dsn);
+                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG10, "Disconnected %d from [%s]\n", result, handle->dsn);
                } else {
                        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Disconnecting [%s]\n", handle->dsn);
                }