File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ impl RuntimeInstance {
182
182
format ! ( "tokio-{}" , id)
183
183
} )
184
184
. on_thread_start ( || {
185
- info ! ( "tokio-thread started" ) ;
185
+ debug ! ( "tokio-thread started" ) ;
186
186
} )
187
187
. build ( )
188
188
. ok ( )
@@ -263,7 +263,7 @@ impl DelayTimerBuilder {
263
263
. name ( "async_schedule" . into ( ) )
264
264
. spawn ( move || {
265
265
smol:: block_on ( async {
266
- info ! ( " `async_schedule` start." ) ;
266
+ debug ! ( " `async_schedule` start." ) ;
267
267
timer. async_schedule ( ) . await ;
268
268
} )
269
269
} )
@@ -275,7 +275,7 @@ impl DelayTimerBuilder {
275
275
. name ( "event_handle" . into ( ) )
276
276
. spawn ( move || {
277
277
block_on ( async {
278
- info ! ( " `event_handle` start." ) ;
278
+ debug ! ( " `event_handle` start." ) ;
279
279
event_handle. lauch ( ) . await ;
280
280
} )
281
281
} )
You can’t perform that action at this time.
0 commit comments