This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues/pull-requests.
UAPI/src/include/log.h

14 lines
295 B
C

#pragma once
#ifdef DEBUG
#ifndef dprintf
/// Debug Output API
#define dprintf(fmt,args...) printf("%s: ",__PRETTY_FUNCTION__);printf(fmt,##args)
#endif /// End of dprintf
#else
#ifndef dprintf
/// Debug Output API
#define dprintf(fmt,args...)
#endif /// End of dprintf
#endif /// End of DEBUG