This commit is contained in:
thinkphp
2015-12-08 17:25:31 +08:00

View File

@@ -39,6 +39,7 @@ class Slog
public static function sql($sql, $pdo) public static function sql($sql, $pdo)
{ {
if (is_object($pdo)) { if (is_object($pdo)) {
if (!self::check()) { if (!self::check()) {
return; return;
@@ -58,9 +59,10 @@ class Slog
} }
self::sqlwhere($sql, $css); self::sqlwhere($sql, $css);
self::trace($sql, 2, $css); self::trace($sql, 2, $css);
}else{
throw new Exception('SocketLog can not support this database link');
} }
throw new Exception('SocketLog can not support this database link');
} }
public static function trace($msg, $trace_level = 2, $css = '') public static function trace($msg, $trace_level = 2, $css = '')