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
21 lines
404 B
C++
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);
|
|
}
|