mirror of
https://github.com/LibreOffice/online.git
synced 2025-07-25 16:04:48 +00:00
Bin default values for parameters that were defaulted at just one call site
Change-Id: I965b0be1ad4f706a06d06d5c6c3f940c1b3cc33c
This commit is contained in:
@ -19,10 +19,10 @@
|
||||
namespace Log
|
||||
{
|
||||
void initialize(const std::string& name,
|
||||
const std::string& logLevel = "trace",
|
||||
const bool withColor = true,
|
||||
const bool logToFile = false,
|
||||
std::map<std::string, std::string> config = {});
|
||||
const std::string& logLevel,
|
||||
const bool withColor,
|
||||
const bool logToFile,
|
||||
std::map<std::string, std::string> config);
|
||||
Poco::Logger& logger();
|
||||
std::string prefix(const char* level);
|
||||
|
||||
|
@ -56,7 +56,7 @@ bool filterTests(CPPUNIT_NS::TestRunner& runner, CPPUNIT_NS::Test* testRegistry,
|
||||
|
||||
int main(int /*argc*/, char** /*argv*/)
|
||||
{
|
||||
Log::initialize("tst");
|
||||
Log::initialize("tst", "trace", true, false, {});
|
||||
|
||||
CPPUNIT_NS::TestResult controller;
|
||||
CPPUNIT_NS::TestResultCollector result;
|
||||
|
Reference in New Issue
Block a user