Skip to content

Commit

Permalink
Fixing logging (#1146)
Browse files Browse the repository at this point in the history
* Fixing logging

* Removing logs
  • Loading branch information
bgopesh authored Oct 24, 2024
1 parent dd71131 commit 42765c3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion source/lib/rocprofiler-sdk/hsa/queue_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,6 @@ QueueController*
get_queue_controller()
{
static auto*& controller = common::static_object<QueueController>::construct();
LOG(ERROR) << (uint64_t) controller;
return controller;
}

Expand Down
2 changes: 1 addition & 1 deletion source/lib/rocprofiler-sdk/hsa/queue_controller.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class QueueController
using agent_cache_map_t = std::unordered_map<uint32_t, AgentCache>;

QueueController() = default;
~QueueController() { ROCP_ERROR << "Destroying Queue"; }
~QueueController() {}
// Initializes the QueueInterceptor. This must be delayed until
// HSA has been inited.
void init(CoreApiTable& core_table, AmdExtTable& ext_table);
Expand Down

0 comments on commit 42765c3

Please sign in to comment.