Skip to content

Commit bfc4292

Browse files
cleanup: Use fmt::join for printing not absl::StrJoin (#159)
1 parent 0803c9f commit bfc4292

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

indexer/Driver.cc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#include "absl/algorithm/container.h"
1919
#include "absl/container/flat_hash_map.h"
2020
#include "absl/container/flat_hash_set.h"
21-
#include "absl/strings/str_join.h"
2221
#include "boost/interprocess/ipc/message_queue.hpp"
2322
#include "boost/process/child.hpp"
2423
#include "boost/process/io.hpp"
@@ -831,8 +830,7 @@ class Driver {
831830
args.push_back(fmt::format("--worker-id={}", workerId));
832831
this->options.addWorkerOptions(args, workerId);
833832

834-
spdlog::debug("spawning worker with arguments: '{}'",
835-
absl::StrJoin(args, " "));
833+
spdlog::debug("spawning worker with arguments: '{}'", fmt::join(args, " "));
836834

837835
boost::process::child worker(args, boost::process::std_out > stdout);
838836
spdlog::debug("worker info running {}, pid = {}", worker.running(),

0 commit comments

Comments
 (0)