Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Remove stray println
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Dec 16, 2020
1 parent f54d8ea commit 5d170d8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion validator/src/bin/solana-test-validator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,6 @@ fn main() {
fn remove_directory_contents(ledger_path: &Path) -> Result<(), io::Error> {
for entry in fs::read_dir(&ledger_path)? {
let entry = entry?;
println!("emove {}:", entry.path().display());
if entry.metadata()?.is_file() {
fs::remove_file(&entry.path())?
} else {
Expand Down

0 comments on commit 5d170d8

Please sign in to comment.