Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/Db
diff options
context:
space:
mode:
authorAnna Larch <anna@nextcloud.com>2022-01-14 17:58:26 +0300
committerAnna Larch <anna@nextcloud.com>2022-01-14 17:58:26 +0300
commit9ed5c3b2332137461d77da8b30cb66b02068a5ee (patch)
tree1647a523c0143de0d96a9966784524a4024fdec1 /lib/Db
parentd305f6bbe4484343beefacd6d620432d795c150f (diff)
Revert "Add more logging to IMAP to DB conversion"
This reverts commit d305f6bbe4484343beefacd6d620432d795c150f.
Diffstat (limited to 'lib/Db')
-rw-r--r--lib/Db/MessageMapper.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Db/MessageMapper.php b/lib/Db/MessageMapper.php
index 3150dd4e3..cd5e7104e 100644
--- a/lib/Db/MessageMapper.php
+++ b/lib/Db/MessageMapper.php
@@ -259,10 +259,6 @@ class MessageMapper extends QBMapper {
* @return void
*/
public function insertBulk(Account $account, Message ...$messages): void {
- $perf = $this->performanceLogger->start(
- 'initial sync ' . $account->getId() . ':' . $account->getName()
- );
-
$this->db->beginTransaction();
try {
@@ -355,8 +351,6 @@ class MessageMapper extends QBMapper {
throw $e;
}
-
- $perf->end();
}
/**