Lines Matching defs:Log
55 parser << Option<LogFile> (DE_NULL, "log", "Log filename", "dummy.log");
65 void Log () { std::cout << std::endl; }
67 void Log (ARG&& arg) { std::cout << arg << ' ' << std::endl; }
69 void Log (ARG&& first, ARGs&&... args) { std::cout << first << ' '; Log(args...); }
75 Log("[DEBUG]", std::forward<ARGs>(args)...);
123 Log("Listening on port", addr.getPort());
141 catch (const std::exception& e) { Log(e.what()); appActive = false; }
203 if (!result) Log("[WARNING] Can't append file", req.fileName);
219 Log("[ERROR] Can't create cache:", e.what());