diff --git a/toolbox/toolbox.h b/toolbox/toolbox.h index a0a144c..e9413c2 100644 --- a/toolbox/toolbox.h +++ b/toolbox/toolbox.h @@ -18,6 +18,11 @@ namespace ToolBox if (Trace) fprintf(stderr, format, args...); } + inline void Log(const char *format) + { + if (Trace) fputs(format, stderr); + } + void dispatch(uint16_t trap);