summaryrefslogtreecommitdiffstats
path: root/clients/log.h
blob: 127d8e0387dd784ef4df2e3ccb262ae3067fb68b (plain)
1
2
3
4
5
6
7
#pragma once

#include <cstdio>

#ifndef LOG
#define LOG(fmt, ...) do { fprintf(stderr, "%s() " fmt, __func__, ##__VA_ARGS__); } while (0)
#endif