From 2c24b705de8ea309aa4246fae02c88d8ecfb7d1b Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Tue, 2 Jun 2015 14:44:44 +0200 Subject: [PATCH] Correct error log message --- QvitterPlugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QvitterPlugin.php b/QvitterPlugin.php index 750f293..8e0cc14 100644 --- a/QvitterPlugin.php +++ b/QvitterPlugin.php @@ -705,8 +705,8 @@ class QvitterPlugin extends Plugin { //} catch (NoParentNoticeException $e) { // TODO: catch this when everyone runs latest GNU social! // This is not a reply to something (has no parent) } catch (NoResultException $e) { - // Parent notice or its author's profile not found! Complain louder? - common_log(LOG_ERR, 'NoResultException: '.$e->getMessage()); + // Parent author's profile not found! Complain louder? + common_log(LOG_ERR, "Parent notice's author not found: ".$e->getMessage()); } }