Commit 0332cc20 authored by Ramon Nou's avatar Ramon Nou Committed by Marc Vef
Browse files

Removal of date leftovers

parent d362806c
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -323,13 +323,10 @@ format_timeval(struct timeval* tv, char* buf, size_t sz) {
 * one thread exactly, and we pass it as an argument whenever we need to
 * format a timestamp. If no timezone is provided, we just format the epoch.
 *
 * NOTE: we use the date C++ library to query the timezone database and
 * to format the timestamps.
 */
template <typename Buffer>
static inline void
format_timestamp_to(Buffer&& buffer,
                    const date::time_zone* const timezone = nullptr) {
format_timestamp_to(Buffer&& buffer) {

    struct ::timeval tv;

@@ -413,7 +410,7 @@ struct logger {
        }

        static_buffer buffer;
        detail::format_timestamp_to(buffer, timezone_);
        detail::format_timestamp_to(buffer);
        fmt::format_to(std::back_inserter(buffer), "[{}] [{}] ", ,
                       log_process_id_, lookup_level_name(level));

@@ -531,8 +528,6 @@ struct logger {
    std::bitset<512> filtered_syscalls_;
    int debug_verbosity_;
#endif

    const date::time_zone* timezone_;
};

// the following static functions can be used to interact
+2 −3
Original line number Diff line number Diff line
@@ -285,8 +285,7 @@ logger::logger(const std::string& opts, const std::string& path,
               ,
               const std::string& filter, int verbosity
#endif
               )
    : timezone_(nullptr) {
) {

    /* use stderr by default */
    log_fd_ = 2;
@@ -460,7 +459,7 @@ print_syscall:

    fmt::basic_memory_buffer<char, max_buffer_size> buffer;

    detail::format_timestamp_to(buffer, timezone_);
    detail::format_timestamp_to(buffer);
    detail::format_syscall_info_to(buffer, info);

    if(result) {