aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/wilson/wilson_event.h
blob: 4b6a7612c058bf252e18c9599bfdff4f70be1df0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "wilson_trace.h"

#include <library/cpp/string_utils/base64/base64.h>
#include <library/cpp/actors/core/actor.h>
#include <library/cpp/actors/core/log.h>

namespace NWilson {

    // stub for NBS
    template<typename TActorSystem>
    inline bool TraceEnabled(const TActorSystem&) {
        return false;
    }

    template<typename TActorSystem, typename TEvent>
    inline void TraceEvent(const TActorSystem&, TTraceId*, TEvent&&, TInstant)
    {}

} // NWilson