Skip to content

Commit

Permalink
better error reporting for file not fitting in tier
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboud committed Dec 7, 2021
1 parent 4173ab0 commit f763e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/impl/autotierfs/TierEngine/components/tiering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ void TierEngineTiering::simulate_tier(void) {
}
if (titr == tiers_.end()) {
// could not find place for file
Logging::log.error("Could not fit file in any tiers!");
Logging::log.error("Could not fit file in any tiers: `" + fitr->full_path().string() + "`");
}
}
}
Expand Down

0 comments on commit f763e29

Please sign in to comment.