Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
91983c87
Commit
91983c87
authored
Oct 23, 2018
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove boolean flag from caf::defaults
Boolean flags are always `false` by convention.
parent
ef18dd39
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
3 deletions
+1
-3
libcaf_core/caf/defaults.hpp
libcaf_core/caf/defaults.hpp
+0
-1
libcaf_core/src/actor_system_config.cpp
libcaf_core/src/actor_system_config.cpp
+1
-1
libcaf_core/src/defaults.cpp
libcaf_core/src/defaults.cpp
+0
-1
No files found.
libcaf_core/caf/defaults.hpp
View file @
91983c87
...
@@ -68,7 +68,6 @@ extern const atom_value console_verbosity;
...
@@ -68,7 +68,6 @@ extern const atom_value console_verbosity;
extern
const
char
*
file_format
;
extern
const
char
*
file_format
;
extern
const
char
*
file_name
;
extern
const
char
*
file_name
;
extern
const
atom_value
file_verbosity
;
extern
const
atom_value
file_verbosity
;
extern
const
bool
inline_output
;
}
// namespace logger
}
// namespace logger
...
...
libcaf_core/src/actor_system_config.cpp
View file @
91983c87
...
@@ -86,7 +86,7 @@ actor_system_config::actor_system_config()
...
@@ -86,7 +86,7 @@ actor_system_config::actor_system_config()
logger_file_format
=
lg
::
file_format
;
logger_file_format
=
lg
::
file_format
;
logger_console
=
lg
::
console
;
logger_console
=
lg
::
console
;
logger_console_format
=
lg
::
console_format
;
logger_console_format
=
lg
::
console_format
;
logger_inline_output
=
lg
::
inline_output
;
logger_inline_output
=
false
;
logger_verbosity
=
lg
::
file_verbosity
;
logger_verbosity
=
lg
::
file_verbosity
;
namespace
mm
=
defaults
::
middleman
;
namespace
mm
=
defaults
::
middleman
;
middleman_network_backend
=
mm
::
network_backend
;
middleman_network_backend
=
mm
::
network_backend
;
...
...
libcaf_core/src/defaults.cpp
View file @
91983c87
...
@@ -81,7 +81,6 @@ const atom_value console_verbosity = atom("trace");
...
@@ -81,7 +81,6 @@ const atom_value console_verbosity = atom("trace");
const
char
*
file_format
=
"%r %c %p %a %t %C %M %F:%L %m%n"
;
const
char
*
file_format
=
"%r %c %p %a %t %C %M %F:%L %m%n"
;
const
char
*
file_name
=
"actor_log_[PID]_[TIMESTAMP]_[NODE].log"
;
const
char
*
file_name
=
"actor_log_[PID]_[TIMESTAMP]_[NODE].log"
;
const
atom_value
file_verbosity
=
atom
(
"trace"
);
const
atom_value
file_verbosity
=
atom
(
"trace"
);
const
bool
inline_output
=
false
;
}
// namespace logger
}
// namespace logger
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment