Merge pull request #5125 from rabbitmq/microsecond
Use microsecond abbreviation 'us' instead of 'µs'
This commit is contained in:
		
						commit
						dd1d2ee9a4
					
				| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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),
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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 ->
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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) ->
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue