We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2446ac3 commit 9943585Copy full SHA for 9943585
src/main.rs
@@ -368,7 +368,10 @@ impl InputAction {
368
if built_binary_ctime.cmp(&script_mtime).is_ge()
369
&& built_binary_ctime.cmp(&manifest_mtime).is_ge()
370
{
371
+ debug!("Keeping old binary");
372
return Ok(execute_command());
373
+ } else {
374
+ debug!("Old binary too old - rebuilding");
375
}
376
377
(Err(error), _) | (_, Err(error)) => {
@@ -377,7 +380,7 @@ impl InputAction {
380
378
381
379
382
Err(e) if e.kind() == std::io::ErrorKind::NotFound => {
- // Continue
383
+ debug!("No old binary found");
384
385
Err(e) => {
386
return Err(error::MainError::Io(e));
0 commit comments