My problem was caused by adding the debug feature. When I changed the clap dependency from
clap = { version = "4.5.32", features = ["debug", "derive"] }
to
clap = { version = "4.5.32", features = ["derive"] }
those above-mentioned logs no longer appeared.