diff options
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/profiles.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/profiles.cc b/src/libstore/profiles.cc index aca0ea5ad..73163424c 100644 --- a/src/libstore/profiles.cc +++ b/src/libstore/profiles.cc @@ -126,9 +126,9 @@ void deleteGeneration(const Path & profile, GenerationNumber gen) static void deleteGeneration2(const Path & profile, GenerationNumber gen, bool dryRun) { if (dryRun) - printInfo(format("would remove profile version %1%") % gen); + notice("would remove profile version %1%", gen); else { - printInfo(format("removing profile version %1%") % gen); + notice("removing profile version %1%", gen); deleteGeneration(profile, gen); } } |