Browse Source

Remove debug output

Visman 3 years ago
parent
commit
481489f505
1 changed files with 0 additions and 6 deletions
  1. 0 6
      app/Core/DB/SqliteStatement.php

+ 0 - 6
app/Core/DB/SqliteStatement.php

@@ -81,12 +81,6 @@ class SqliteStatement extends AbstractStatement
             }
         }
 
-        ob_start();
-        $this->debugDumpParams();
-        $r = ob_get_contents();
-        ob_end_clean();
-        error_log($r);
-
         return $this->columnsType;
     }