summaryrefslogtreecommitdiff
path: root/server/src/widgetvalue.cc
diff options
context:
space:
mode:
authordeva <deva>2010-07-05 09:01:54 +0000
committerdeva <deva>2010-07-05 09:01:54 +0000
commitfbba835d7efaa4ee1d28bf5c7e2232e53d84af5e (patch)
tree5b71566f174143fea11e21e0c034bd6a1026c03d /server/src/widgetvalue.cc
parent71318f4e56dd1467b071404c61f686745cf3dfc4 (diff)
Remove PRACRO_ prefix from debug macros.
Diffstat (limited to 'server/src/widgetvalue.cc')
-rw-r--r--server/src/widgetvalue.cc14
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++;
}