Commit 5a54b7a9 authored by Lee Howes's avatar Lee Howes Committed by Facebook Github Bot

Fix logging function choice

Summary: Corrects incorrect logging function being called.

Reviewed By: lewissbaker

Differential Revision: D19453995

fbshipit-source-id: 5268a8ed5ef8379da84e83ec05db9e88317f3b9a
parent 6d886fc7
......@@ -174,7 +174,7 @@ void setCPUExecutor(std::weak_ptr<Executor> executor) {
std::shared_ptr<IOExecutor> getIOExecutor() {
auto& singleton = gGlobalIOExecutor.get();
auto executor = singleton.get();
async_tracing::logGetGlobalCPUExecutor(executor.get());
async_tracing::logGetGlobalIOExecutor(executor.get());
return executor;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment