mirror of https://github.com/aria2/aria2
2008-09-17 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added deliminating text to the beginning of the log so that one can find where the log starts easily. * src/main.ccpull/1/head
parent
a1bac34778
commit
5a3a16f0b0
|
@ -1,3 +1,9 @@
|
||||||
|
2008-09-17 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
|
Added deliminating text to the beginning of the log so that one can find
|
||||||
|
where the log starts easily.
|
||||||
|
* src/main.cc
|
||||||
|
|
||||||
2008-09-16 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
2008-09-16 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
Moved isProxyGETRequest function outside #ifdef ENABLE_ASYNC_DNS clause
|
Moved isProxyGETRequest function outside #ifdef ENABLE_ASYNC_DNS clause
|
||||||
|
|
|
@ -362,6 +362,9 @@ int main(int argc, char* argv[])
|
||||||
int32_t exitStatus = EXIT_SUCCESS;
|
int32_t exitStatus = EXIT_SUCCESS;
|
||||||
try {
|
try {
|
||||||
Logger* logger = LogFactory::getInstance();
|
Logger* logger = LogFactory::getInstance();
|
||||||
|
logger->info("<<--- --- --- ---");
|
||||||
|
logger->info(" --- --- --- ---");
|
||||||
|
logger->info(" --- --- --- --->>");
|
||||||
logger->info("%s %s %s", PACKAGE, PACKAGE_VERSION, TARGET);
|
logger->info("%s %s %s", PACKAGE, PACKAGE_VERSION, TARGET);
|
||||||
logger->info(MSG_LOGGING_STARTED);
|
logger->info(MSG_LOGGING_STARTED);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue