Files
scylladb/clocks-impl.cc
Kefu Chai 43fd63e28c clocks-impl: format time_point using fmt
instead of relying on the operator<<() of an opaque type, use fmtlib
to print a timepoint for better support of new fmtlib which dropped
the default-generated formatter for types with operator<<().

Refs #13245
Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#16116
2023-11-22 17:44:07 +02:00

21 lines
404 B
C++

/*
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <fmt/chrono.h>
#include "timestamp.hh"
#include "clocks-impl.hh"
std::atomic<int64_t> clocks_offset;
std::string format_timestamp(api::timestamp_type ts) {
std::chrono::system_clock::time_point when{api::timestamp_clock::duration(ts)};
return fmt::format("{:%Y/%m/%d %T}", when);
}