Merge pull request #5125 from rabbitmq/microsecond

Use microsecond abbreviation 'us' instead of 'µs'
This commit is contained in:
Michael Klishin 2022-06-30 20:46:20 +04:00 committed by GitHub
commit dd1d2ee9a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -387,7 +387,7 @@ start_it(StartType) ->
T1 = erlang:timestamp(),
?LOG_DEBUG(
"Time to start RabbitMQ: ~p µs",
"Time to start RabbitMQ: ~p us",
[timer:now_diff(T1, T0)]),
stop_boot_marker(Marker),
ok

View File

@ -932,7 +932,7 @@ query_supported_feature_flags() ->
TestsuiteProviders = [App || {App, _, _} <- AttributesFromTestsuite],
T1 = erlang:timestamp(),
rabbit_log_feature_flags:debug(
"Feature flags: time to find supported feature flags: ~p µs",
"Feature flags: time to find supported feature flags: ~p us",
[timer:now_diff(T1, T0)]),
AllAttributes = AttributesPerApp ++ AttributesFromTestsuite,
AllApps = lists:usort(ScannedApps ++ TestsuiteProviders),

View File

@ -220,7 +220,7 @@ maybe_initialize_registry(NewSupportedFeatureFlags,
WrittenToDisk),
T1 = erlang:timestamp(),
rabbit_log_feature_flags:debug(
"Feature flags: time to regen registry: ~p µs",
"Feature flags: time to regen registry: ~p us",
[timer:now_diff(T1, T0)]),
Ret;
false ->

View File

@ -867,7 +867,7 @@ handle_nodes_in_parallel(NodeConfigs, Fun) ->
T2 = erlang:timestamp(),
ct:pal(
?LOW_IMPORTANCE,
"Time to run ~p for node ~s: ~b µs",
"Time to run ~p for node ~s: ~b us",
[Fun,
?config(nodename, NodeConfig),
timer:now_diff(T2, T1)]),
@ -884,7 +884,7 @@ wait_for_node_handling([], Fun, T0, Results) ->
T3 = erlang:timestamp(),
ct:pal(
?LOW_IMPORTANCE,
"Time to run ~p for all nodes: ~b µs",
"Time to run ~p for all nodes: ~b us",
[Fun, timer:now_diff(T3, T0)]),
Results;
wait_for_node_handling(Procs, Fun, T0, Results) ->