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
eaa2e0e1
Commit
eaa2e0e1
authored
Oct 23, 2018
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'topic/fix-logger-verbosity'
parents
ffbc6fd9
91983c87
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
libcaf_core/src/actor_system_config.cpp
libcaf_core/src/actor_system_config.cpp
+6
-4
No files found.
libcaf_core/src/actor_system_config.cpp
View file @
eaa2e0e1
...
...
@@ -81,11 +81,13 @@ actor_system_config::actor_system_config()
work_stealing_moderate_sleep_duration_us
=
to_us
(
ws
::
moderate_sleep_duration
);
work_stealing_relaxed_steal_interval
=
ws
::
relaxed_steal_interval
;
work_stealing_relaxed_sleep_duration_us
=
to_us
(
ws
::
relaxed_sleep_duration
);
logger_file_name
=
"actor_log_[PID]_[TIMESTAMP]_[NODE].log"
;
logger_file_format
=
"%r %c %p %a %t %C %M %F:%L %m%n"
;
logger_console
=
atom
(
"none"
);
logger_console_format
=
"%m"
;
namespace
lg
=
defaults
::
logger
;
logger_file_name
=
lg
::
file_name
;
logger_file_format
=
lg
::
file_format
;
logger_console
=
lg
::
console
;
logger_console_format
=
lg
::
console_format
;
logger_inline_output
=
false
;
logger_verbosity
=
lg
::
file_verbosity
;
namespace
mm
=
defaults
::
middleman
;
middleman_network_backend
=
mm
::
network_backend
;
middleman_enable_automatic_connections
=
false
;
...
...
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