From 67900ff3813b0bdb5f57f2bf0069af0042f5eea0 Mon Sep 17 00:00:00 2001 From: NejcZdovc Date: Thu, 17 Jan 2019 07:36:51 +0100 Subject: [PATCH] Removes logs Resolves https://github.com/brave/brave-browser/issues/3002 --- .../brave_rewards/browser/publisher_info_database.cc | 8 -------- 1 file changed, 8 deletions(-) diff --git a/components/brave_rewards/browser/publisher_info_database.cc b/components/brave_rewards/browser/publisher_info_database.cc index 7530d511bc36..58b296d603d4 100644 --- a/components/brave_rewards/browser/publisher_info_database.cc +++ b/components/brave_rewards/browser/publisher_info_database.cc @@ -415,16 +415,10 @@ bool PublisherInfoDatabase::InsertOrUpdateActivityInfo( return false; } - LOG(ERROR) << "NEJC 1"; - if (!InsertOrUpdatePublisherInfo(info)) { return false; } - LOG(ERROR) << "NEJC 2"; - - LOG(ERROR) << info.year; - sql::Statement activity_info_insert( GetDB().GetCachedStatement(SQL_FROM_HERE, "INSERT OR REPLACE INTO activity_info " @@ -442,8 +436,6 @@ bool PublisherInfoDatabase::InsertOrUpdateActivityInfo( activity_info_insert.BindInt64(7, info.reconcile_stamp); activity_info_insert.BindInt64(8, info.visits); - LOG(ERROR) << "NEJC 3"; - return activity_info_insert.Run(); }