diff options
Diffstat (limited to 'server/src/widgetvalue.cc')
-rw-r--r-- | server/src/widgetvalue.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/server/src/widgetvalue.cc b/server/src/widgetvalue.cc index ddb0e9c..053eecc 100644 --- a/server/src/widgetvalue.cc +++ b/server/src/widgetvalue.cc @@ -59,9 +59,9 @@ static bool getMapValue(Value &value, // Value too old? if(value.timestamp < time(NULL) - Conf::pentominos_max_ttl) return false; - PRACRO_DEBUG(prefill, "map: (%s, %d)\n", - value.value.c_str(), - (int)value.timestamp); + DEBUG(prefill, "map: (%s, %d)\n", + value.value.c_str(), + (int)value.timestamp); } @@ -126,10 +126,10 @@ bool getValue(Value &value, std::map<time_t, Value>::iterator i = prio.begin(); while(i != prio.end()) { - PRACRO_DEBUG(prefill, "% 11ld - \"%s\" (src: '%s')\n", - i->second.timestamp, - i->second.value.c_str(), - i->second.source.c_str()); + DEBUG(prefill, "% 11ld - \"%s\" (src: '%s')\n", + i->second.timestamp, + i->second.value.c_str(), + i->second.source.c_str()); i++; } |