Add more grpc - Asyncstuff
[src/agl-compositor.git] / clients / log.h
1 #pragma once
2
3 #include <cstdio>
4
5 #ifndef LOG
6 #define LOG(fmt, ...) do { fprintf(stderr, "%s() " fmt, __func__, ##__VA_ARGS__); } while (0)
7 #endif