Skip to content

Commit 1fd9d17

Browse files
authored
Merge pull request #44 from Plato-solutions/master
change info! to debug! messages, so that the library doesn't spam logs
2 parents 68f9f8c + e9b058d commit 1fd9d17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/entity.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ impl RuntimeInstance {
182182
format!("tokio-{}", id)
183183
})
184184
.on_thread_start(|| {
185-
info!("tokio-thread started");
185+
debug!("tokio-thread started");
186186
})
187187
.build()
188188
.ok()
@@ -263,7 +263,7 @@ impl DelayTimerBuilder {
263263
.name("async_schedule".into())
264264
.spawn(move || {
265265
smol::block_on(async {
266-
info!(" `async_schedule` start.");
266+
debug!(" `async_schedule` start.");
267267
timer.async_schedule().await;
268268
})
269269
})
@@ -275,7 +275,7 @@ impl DelayTimerBuilder {
275275
.name("event_handle".into())
276276
.spawn(move || {
277277
block_on(async {
278-
info!(" `event_handle` start.");
278+
debug!(" `event_handle` start.");
279279
event_handle.lauch().await;
280280
})
281281
})

0 commit comments

Comments
 (0)