diff options
author | bertho <bertho> | 2009-02-05 01:26:26 +0000 |
---|---|---|
committer | bertho <bertho> | 2009-02-05 01:26:26 +0000 |
commit | 551d4aa1be9f4d256df3fadca9a005a0f316adf8 (patch) | |
tree | b3cae7ee51d5dc64d0d07ae7deffdd67d4f3f371 /server/src/widgetgenerator.cc | |
parent | 3ad20fdd0c8d5c20f0c02e3d1ad2e1e6b0f2a078 (diff) |
Add a flexible debug interface. Please read the documentation.
Diffstat (limited to 'server/src/widgetgenerator.cc')
-rw-r--r-- | server/src/widgetgenerator.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/widgetgenerator.cc b/server/src/widgetgenerator.cc index 58f2992..2e51b32 100644 --- a/server/src/widgetgenerator.cc +++ b/server/src/widgetgenerator.cc @@ -24,6 +24,7 @@ * along with Pracro; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ +#include "debug.h" #include "widgetgenerator.h" #include "configuration.h" @@ -54,7 +55,7 @@ static std::string automap(std::string name) "end\n" "return value, timestamp\n"; - printf("Automap:\n%s\n", automapstring.c_str()); + PRACRO_DEBUG(widget, "Automap:\n%s\n", automapstring.c_str()); return automapstring; } |