Commit b25711a 1 parent abcd369 commit b25711a Copy full SHA for b25711a
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -206,19 +206,19 @@ impl WatchSystem {
206
206
207
207
async fn check_spawn_build ( & mut self ) {
208
208
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" ) ;
210
210
return ;
211
211
}
212
212
213
- tracing:: debug!( "Changes since last build was started, checking cooldown" ) ;
213
+ tracing:: debug!( "Changes since the last build was started, checking cooldown" ) ;
214
214
215
215
if let Some ( cooldown) = self . watcher_cooldown {
216
216
let time_since_last_build = self
217
217
. last_change
218
218
. saturating_duration_since ( self . last_build_finished ) ;
219
219
if time_since_last_build < cooldown {
220
220
tracing:: debug!(
221
- "Cooldown still active: {} remaining" ,
221
+ "Cooldown is still active: {} remaining" ,
222
222
humantime:: Duration :: from( cooldown - time_since_last_build)
223
223
) ;
224
224
return ;
You can’t perform that action at this time.
0 commit comments