mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 04:12:19 +00:00
Fixed error with logging.
This commit is contained in:
parent
c2ff64efc4
commit
ad442fd497
@ -23,6 +23,7 @@
|
|||||||
#include <Poco/ConsoleChannel.h>
|
#include <Poco/ConsoleChannel.h>
|
||||||
#include <Poco/FileChannel.h>
|
#include <Poco/FileChannel.h>
|
||||||
#include <Poco/File.h>
|
#include <Poco/File.h>
|
||||||
|
#include <Poco/Path.h>
|
||||||
#include <Poco/Message.h>
|
#include <Poco/Message.h>
|
||||||
#include <Poco/Util/AbstractConfiguration.h>
|
#include <Poco/Util/AbstractConfiguration.h>
|
||||||
#include <Poco/Ext/MProfile.h>
|
#include <Poco/Ext/MProfile.h>
|
||||||
@ -125,7 +126,7 @@ void Daemon::buildLoggers()
|
|||||||
pf->setProperty("times", "local");
|
pf->setProperty("times", "local");
|
||||||
FormattingChannel *log = new FormattingChannel(pf);
|
FormattingChannel *log = new FormattingChannel(pf);
|
||||||
FileChannel *file = new FileChannel();
|
FileChannel *file = new FileChannel();
|
||||||
file->setProperty("path", config().getString("logger.log"));
|
file->setProperty("path", Poco::Path(config().getString("logger.log")).absolute().toString());
|
||||||
file->setProperty("rotation", config().getRawString("logger.size", "100M"));
|
file->setProperty("rotation", config().getRawString("logger.size", "100M"));
|
||||||
file->setProperty("archive", "number");
|
file->setProperty("archive", "number");
|
||||||
file->setProperty("purgeCount", config().getRawString("logger.count", "1"));
|
file->setProperty("purgeCount", config().getRawString("logger.count", "1"));
|
||||||
@ -142,7 +143,7 @@ void Daemon::buildLoggers()
|
|||||||
pf->setProperty("times", "local");
|
pf->setProperty("times", "local");
|
||||||
FormattingChannel *errorlog = new FormattingChannel(pf);
|
FormattingChannel *errorlog = new FormattingChannel(pf);
|
||||||
FileChannel *errorfile = new FileChannel();
|
FileChannel *errorfile = new FileChannel();
|
||||||
errorfile->setProperty("path", config().getString("logger.errorlog"));
|
errorfile->setProperty("path", Poco::Path(config().getString("logger.errorlog")).absolute().toString());
|
||||||
errorfile->setProperty("rotation", config().getRawString("logger.size", "100M"));
|
errorfile->setProperty("rotation", config().getRawString("logger.size", "100M"));
|
||||||
errorfile->setProperty("archive", "number");
|
errorfile->setProperty("archive", "number");
|
||||||
errorfile->setProperty("purgeCount", config().getRawString("logger.count", "1"));
|
errorfile->setProperty("purgeCount", config().getRawString("logger.count", "1"));
|
||||||
|
Loading…
Reference in New Issue
Block a user