diff --git a/lib/plist_find.c b/lib/plist_find.c index 70a509fe..72b536d0 100644 --- a/lib/plist_find.c +++ b/lib/plist_find.c @@ -255,8 +255,6 @@ vpkg_user_conf(struct xbps_handle *xhp, const char *vpkg) } } free(vpkgname); - xbps_dbg_printf(xhp, "matched vpkg `%s' with `%s (provides %s)`\n", - vpkg, pkg, vpkg_conf); found = true; break; } diff --git a/lib/repo_pkgdeps.c b/lib/repo_pkgdeps.c index 30c76a88..96f20c36 100644 --- a/lib/repo_pkgdeps.c +++ b/lib/repo_pkgdeps.c @@ -200,7 +200,7 @@ find_repo_deps(struct xbps_handle *xhp, } free(pkgname); /* Required dependency not installed */ - xbps_dbg_printf_append(xhp, "not installed "); + xbps_dbg_printf_append(xhp, "not installed.\n"); reason = "install"; state = XBPS_PKG_STATE_NOT_INSTALLED; } else { diff --git a/lib/transaction_store.c b/lib/transaction_store.c index f0717647..ab084948 100644 --- a/lib/transaction_store.c +++ b/lib/transaction_store.c @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2014 Juan Romero Pardines. + * Copyright (c) 2014-2015 Juan Romero Pardines. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -69,7 +69,7 @@ xbps_transaction_store(struct xbps_handle *xhp, xbps_array_t pkgs, if (!xbps_array_add(pkgs, pkgd)) return EINVAL; - xbps_dbg_printf_append(xhp, " (added %s)\n", pkgver); + xbps_dbg_printf(xhp, "Added `%s' into the dependency list\n", pkgver); return 0; }