aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/messagebus/dummy_debugger.h
blob: b614ee94a6f09f1c7b9e7aa9a3ba0fc4715ff0af (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once 
 
#include <util/datetime/base.h> 
#include <util/stream/output.h> 
 
#define MB_TRACE()                                                                                    \
    do {                                                                                              \
        Cerr << TInstant::Now() << " " << __FILE__ << ":" << __LINE__ << " " << __FUNCTION__ << Endl; \ 
    } while (false)