1
0
Fork 0
mirror of https://github.com/archtechx/todo-system.git synced 2025-12-12 09:04:03 +00:00

improve gitignore logic

This commit is contained in:
Samuel Štancl 2023-11-24 04:52:15 +01:00
parent 61a78bcdd6
commit 35688138e7
2 changed files with 18 additions and 9 deletions

View file

@ -97,8 +97,8 @@ fn main() {
if args.verbose {
eprint!("\n\n");
stats.print();
eprintln!("Paths: {:?}", &paths);
eprintln!("Excludes: {:?}", &excludes);
eprintln!("Paths ({}): {:?}", &paths.len(), &paths);
eprintln!("Excludes ({}): {:?}", &excludes.len(), &excludes);
eprintln!("todo.md: {:?}", &todos_path);
eprintln!("readme.md: {:?}", &readme_path);
}