diff options
author | saturneric <[email protected]> | 2024-01-05 12:55:15 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-05 12:55:15 +0000 |
commit | 644aa4397b03dbef73f8bfedc13925b51cad836b (patch) | |
tree | 7788d1cd2f0687dd8e576b111d9990c580092e7a /src/core/model/DataObject.h | |
parent | fix: slove some known issues (diff) | |
download | GpgFrontend-644aa4397b03dbef73f8bfedc13925b51cad836b.tar.gz GpgFrontend-644aa4397b03dbef73f8bfedc13925b51cad836b.zip |
feat: integrate logging api to core
Diffstat (limited to 'src/core/model/DataObject.h')
-rw-r--r-- | src/core/model/DataObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/model/DataObject.h b/src/core/model/DataObject.h index 56c86bf6..6b41a051 100644 --- a/src/core/model/DataObject.h +++ b/src/core/model/DataObject.h @@ -70,7 +70,7 @@ class GPGFRONTEND_CORE_EXPORT DataObject { for (size_t i = 0; i < type_list.size(); ++i) { if (std::type_index(*type_list[i]) != std::type_index((*this)[i].type())) { - SPDLOG_ERROR( + GF_CORE_LOG_ERROR( "value of index {} in data object is type: {}, " "not expected type: {}", i, ((*this)[i]).type().name(), type_list[i]->name()); |