Skip to content
Snippets Groups Projects
Verified Commit c9360a7b authored by Timm Fitschen's avatar Timm Fitschen
Browse files

MAINT: fix merge conflicts

parent bd7a807e
No related branches found
No related tags found
2 merge requests!42Release 0.2.0,!28F async execute
Pipeline #24633 passed with warnings
Pipeline: caosdb-cppinttest

#24634

    ......@@ -64,12 +64,10 @@ class TraceEnterLeaveLogger {
    public:
    inline TraceEnterLeaveLogger(const std::string &channel, const std::string &function_name)
    : channel(channel), function_name(function_name) {
    BOOST_LOG_CHANNEL_SEV(caosdb::logging::logger::get(), this->channel, CAOSDB_LOG_LEVEL_TRACE)
    << "Enter " << this->function_name;
    caosdb::logging::LoggerOutputStream::get(this->channel, CAOSDB_LOG_LEVEL_TRACE) << "Enter " << this->function_name;
    }
    inline ~TraceEnterLeaveLogger() {
    BOOST_LOG_CHANNEL_SEV(caosdb::logging::logger::get(), this->channel, CAOSDB_LOG_LEVEL_TRACE)
    << "Leave " << this->function_name;
    caosdb::logging::LoggerOutputStream::get(this->channel, CAOSDB_LOG_LEVEL_TRACE) << "Leave " << this->function_name;
    }
    private:
    ......
    ......@@ -180,6 +180,7 @@ using caosdb::entity::v1::MultiTransactionResponse;
    using caosdb::entity::v1::RegisterFileUploadRequest;
    using caosdb::entity::v1::RegisterFileUploadResponse;
    using caosdb::transaction::TransactionStatus;
    using RetrieveResponse = caosdb::entity::v1::RetrieveResponse;
    using TransactionResponseCase = caosdb::entity::v1::TransactionResponse::TransactionResponseCase;
    using caosdb::utility::get_arena;
    using google::protobuf::Arena;
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment