aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/thread/Task.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2023-01-07 14:20:07 +0000
committerSaturneric <[email protected]>2023-01-07 14:20:07 +0000
commit225d435423888c38e0c75f63c1d7a41283839bd5 (patch)
tree4c575375dde858e9391e585f9bf47d65090c70cc /src/core/thread/Task.cpp
parentfix: continue to solve ubuntu 18.04 build issues (diff)
downloadGpgFrontend-225d435423888c38e0c75f63c1d7a41283839bd5.tar.gz
GpgFrontend-225d435423888c38e0c75f63c1d7a41283839bd5.zip
feat: add advanced gnupg operations
1.fix some issues 2. add advanced gnupg operations 3. add configurations information in Gnupg Help Tab
Diffstat (limited to 'src/core/thread/Task.cpp')
-rw-r--r--src/core/thread/Task.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/thread/Task.cpp b/src/core/thread/Task.cpp
index 6b1a27a1..669334d5 100644
--- a/src/core/thread/Task.cpp
+++ b/src/core/thread/Task.cpp
@@ -139,8 +139,8 @@ size_t GpgFrontend::Thread::Task::DataObject::GetObjectSize() {
}
void GpgFrontend::Thread::Task::DataObject::free_heap_ptr(Destructor *ptr) {
- DLOG(TRACE) << "p_obj: " << ptr->p_obj << "destructor: " << ptr->destroy
- << "DataObject:" << this;
+ LOG(TRACE) << "p_obj: " << ptr->p_obj << "destructor: " << ptr->destroy
+ << "DataObject:" << this;
if (ptr->destroy != nullptr) {
ptr->destroy(ptr->p_obj);
}