openPilotLog
adebug.h
1 #ifndef ADEBUG_H
2 #define ADEBUG_H
3 
4 #include <QDebug>
5 
6 #define DEB(expr) \
7  qDebug() << __PRETTY_FUNCTION__ << "\t" << expr
8 
9 #endif