summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <michael@rabbitmq.com>2014-06-20 11:56:34 +0400
committerMichael Klishin <michael@rabbitmq.com>2014-06-20 11:56:34 +0400
commit8b375c0f757121ccb61a3f7a76fcaeeb84920617 (patch)
treed8c9240f87f28b1d2177ef7c800fd780511a22d6 /src
parent641368895d3f298e317a4d720d5ec0feee3527de (diff)
downloadrabbitmq-server-git-8b375c0f757121ccb61a3f7a76fcaeeb84920617.tar.gz
Formatting
Diffstat (limited to 'src')
-rw-r--r--src/rabbit.erl9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl
index e95fed530a..b2df419101 100644
--- a/src/rabbit.erl
+++ b/src/rabbit.erl
@@ -824,14 +824,19 @@ warn_if_kernel_poll_is_disabled() ->
true ->
ok;
false ->
- error_logger:warning_msg("Kernel poll (epoll, kqueue, etc) is disabled. Throughput and CPU utilization may worsen.~n"),
+ error_logger:warning_msg("Kernel poll (epoll, kqueue, etc) "
+ "is disabled. Throughput and"
+ "CPU utilization may worsen.~n"),
ok
end.
warn_if_few_async_threads() ->
AsyncThreads = erlang:system_info(thread_pool_size),
if AsyncThreads < ?ASYNC_THREADS_WARNING_THRESHOLD ->
- error_logger:warning_msg("Erlang VM is running with ~s I/O threads, file I/O performance may worsen ~n", [integer_to_list(AsyncThreads)]),
+ error_logger:warning_msg(
+ "Erlang VM is running with ~s I/O threads, "
+ "file I/O performance may worsen ~n",
+ [integer_to_list(AsyncThreads)]),
ok;
true ->
ok