diff options
| author | mo8it <mo8it@proton.me> | 2024-06-01 21:51:45 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-06-01 21:51:45 +0200 |
| commit | a3ada0eee8b207870dd3774f23afbc5c4e2b3f12 (patch) | |
| tree | f0dc1f5c35aa01b1362fa03ce26157ab20b97d00 | |
| parent | 50530fa3cff5bc765291603873728799930d764b (diff) | |
Print the exercise solution on check
| -rw-r--r-- | src/dev/check.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dev/check.rs b/src/dev/check.rs index 78396a8..61b1419 100644 --- a/src/dev/check.rs +++ b/src/dev/check.rs @@ -171,6 +171,7 @@ fn check_solutions(info_file: &InfoFile) -> Result<()> { continue; } + println!("Running the solution of {}", exercise_info.name); let success = exercise_info.run_solution(&mut output, &target_dir)?; if !success { io::stderr().write_all(&output)?; |
