Remove print statements

- comment out print_err function behavior (something I was using for
debugging before, but I'm keeping the function for future debugging)
This commit is contained in:
towards-a-new-leftypol 2020-12-27 15:14:34 -05:00
parent 35eb148b21
commit e82012d6d6
2 changed files with 5 additions and 31 deletions

View file

@ -12,9 +12,8 @@ $logfile = "/tmp/lainchan_err.out";
file_put_contents($logfile, "\n\nSTART\n\n", FILE_APPEND);
function print_err($s) {
global $logfile;
file_put_contents($logfile, $s . "\n", FILE_APPEND);
// global $logfile;
// file_put_contents($logfile, $s . "\n", FILE_APPEND);
}
function print_err2($s) {