From 48ba88b11ce26fef353065bc32f6a282fb6f33dc Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 2 Feb 2021 05:53:55 +0000 Subject: [PATCH] remove test logging --- src/Model/Post.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Model/Post.php b/src/Model/Post.php index 5cafdf25ae..73742b3b22 100644 --- a/src/Model/Post.php +++ b/src/Model/Post.php @@ -457,13 +457,11 @@ class Post $post_thread_condition[0] = "EXISTS(SELECT `id` FROM `post-user` WHERE " . $post_thread_condition[0] . " AND `uri-id` = `post-thread-user`.`uri-id` AND `uid` = `post-thread-user`.`uid`)"; - Logger::info('Test2-start', ['condition' => $post_thread_condition]); if (!DBA::update('post-thread-user', $update_fields, $post_thread_condition)) { DBA::rollback(); Logger::notice('Updating post-thread-user failed', ['fields' => $update_fields, 'condition' => $condition]); return false; } - Logger::info('Test2-end'); $affected = max($affected, DBA::affectedRows()); }