Skip to content

Commit b25711a

Browse files
committed
style: reword a few log messages
1 parent abcd369 commit b25711a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/watch.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -206,19 +206,19 @@ impl WatchSystem {
206206

207207
async fn check_spawn_build(&mut self) {
208208
if self.last_change <= self.last_build_started {
209-
tracing::trace!("No changes since last build was started");
209+
tracing::trace!("No changes since the last build was started");
210210
return;
211211
}
212212

213-
tracing::debug!("Changes since last build was started, checking cooldown");
213+
tracing::debug!("Changes since the last build was started, checking cooldown");
214214

215215
if let Some(cooldown) = self.watcher_cooldown {
216216
let time_since_last_build = self
217217
.last_change
218218
.saturating_duration_since(self.last_build_finished);
219219
if time_since_last_build < cooldown {
220220
tracing::debug!(
221-
"Cooldown still active: {} remaining",
221+
"Cooldown is still active: {} remaining",
222222
humantime::Duration::from(cooldown - time_since_last_build)
223223
);
224224
return;

0 commit comments

Comments
 (0)