diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-04-17 07:23:28 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-04-17 07:23:28 -0400 |
| commit | 333a0c3c16ddde22ec2309e37679ac4f4b5f36c5 (patch) | |
| tree | 1eda54ff49a5466be72dd7074c03b21232e541ff | |
| parent | 4621c271642906d13fffaed83e1033da09abe20d (diff) | |
removed some debug logging
| -rw-r--r-- | src/filetreemodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filetreemodel.cpp b/src/filetreemodel.cpp index a9cbeefe..282dfa73 100644 --- a/src/filetreemodel.cpp +++ b/src/filetreemodel.cpp @@ -855,7 +855,7 @@ void FileTreeModel::queueRemoveItem(FileTreeItem* item) void FileTreeModel::removeItems() { // see comment at the top of this file - log::debug("remove item timer: removing {} items", m_removeItems.size()); + trace(log::debug("remove item timer: removing {} items", m_removeItems.size())); auto copy = std::move(m_removeItems); m_removeItems.clear(); @@ -875,7 +875,7 @@ void FileTreeModel::queueSortItem(FileTreeItem* item) void FileTreeModel::sortItems() { // see comment at the top of this file - log::debug("sort item timer: sorting {} items", m_sortItems.size()); + trace(log::debug("sort item timer: sorting {} items", m_sortItems.size())); auto copy = std::move(m_sortItems); m_sortItems.clear(); |
