diff options
author | Dan McGee <dan@archlinux.org> | 2012-01-05 16:48:21 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-01-05 16:48:21 -0600 |
commit | a1437cbf1bccc025d33e083e1a79e85c57c6e2df (patch) | |
tree | ba9ecdddbb864d5912583cca48518b14ee5c0580 /lib | |
parent | def9e45affaf5212cd10b71a55f0b668f2e73ee4 (diff) | |
download | pacman-a1437cbf1bccc025d33e083e1a79e85c57c6e2df.tar.xz |
Remove useless logger message
We don't need two log messages back-to-back about the same thing here.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libalpm/remove.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 44f3ee93..41cee514 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -461,7 +461,6 @@ int _alpm_remove_single_package(alpm_handle_t *handle, db: /* remove the package from the database */ - _alpm_log(handle, ALPM_LOG_DEBUG, "updating database\n"); _alpm_log(handle, ALPM_LOG_DEBUG, "removing database entry '%s'\n", pkgname); if(_alpm_local_db_remove(handle->db_local, oldpkg) == -1) { _alpm_log(handle, ALPM_LOG_ERROR, _("could not remove database entry %s-%s\n"), |