summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-10-18 14:14:17 +0100
committerRichard W.M. Jones <rjones@redhat.com>2011-10-18 14:14:17 +0100
commitbd28777b47398de030b84f8d780067660928cc88 (patch)
tree3150844ba27f7d0d75226f6e63b628fd61ddd214 /src
parent93598c10650ab7d885b7f497308d05d478eb5e06 (diff)
downloadfebootstrap-bd28777b47398de030b84f8d780067660928cc88.tar.gz
febootstrap-bd28777b47398de030b84f8d780067660928cc88.tar.xz
febootstrap-bd28777b47398de030b84f8d780067660928cc88.zip
debian: Clean up a debug message.
Diffstat (limited to 'src')
-rw-r--r--src/febootstrap_debian.ml5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/febootstrap_debian.ml b/src/febootstrap_debian.ml
index 0169756..ace04d3 100644
--- a/src/febootstrap_debian.ml
+++ b/src/febootstrap_debian.ml
@@ -70,9 +70,8 @@ let rec debian_resolve_dependencies_and_download names =
fun pkg -> List.exists ((=) pkg) (get_installed_pkgs ())
) pkgs in
- debug "wanted packages (present / download): %s / %s\n"
- (String.concat " " present_pkgs)
- (String.concat " " download_pkgs);
+ debug "packages already present: %s" (String.concat " " present_pkgs);
+ debug "wanted packages to download: %s" (String.concat " " download_pkgs);
(* Download the packages. *)
if (List.length download_pkgs > 0)