diff options
Diffstat (limited to 'server/src/macrolist.cc')
-rw-r--r-- | server/src/macrolist.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/macrolist.cc b/server/src/macrolist.cc index f067fb1..e8bc507 100644 --- a/server/src/macrolist.cc +++ b/server/src/macrolist.cc @@ -75,10 +75,10 @@ std::string MacroList::getLatestVersion(std::string macro) throw(Exception) if(find(macro) == end()) throw Exception("Macro ["+macro+"] does not exist"); MacroListItem mli = (*this)[macro]; if(mli.size() == 0) return ""; - printf("Search for %s - found %s v%s\n", - macro.c_str(), - (macropath + "/" + mli.begin()->second).c_str(), - ((std::string)mli.begin()->first).c_str()); + PRACRO_DEBUG(macrolist, "Search for %s - found %s v%s\n", + macro.c_str(), + (macropath + "/" + mli.begin()->second).c_str(), + ((std::string)mli.begin()->first).c_str()); return macropath + "/" + mli.begin()->second; } |