X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id C9A01DC0748 for ; Thu, 27 Jun 2013 22:35:51 +0000 (UTC) Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 58A2921055 for ; Thu, 27 Jun 2013 18:35:51 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute2.internal (MEProxy); Thu, 27 Jun 2013 18:35:51 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :in-reply-to:references; s=smtpout; bh=2OtsER4MEoEVjCRIG69IqSxz6 rA=; b=lKorWWS/kXiqOLFHi9VfuPbyeKwJ+OIx9zVyDG6YwrRp5QEmJ/yfyFSQw 7Ju2rp6JZvezc/svUwOxA8+tmakksCQkI5pf47iLJuHuatEM+F38sr1hq6NJKQK8 KwIAS+f4ubBUFHBi2YlqaxPVqJ2g9rYaCCd2xQQVVsOzC4EKB8= X-Sasl-enc: Ir6e2H6eL9KgzxDTxIIU1poS6pTeFanpf/Oi1y8KMTpC 1372372551 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id 2598A68021D for ; Thu, 27 Jun 2013 18:35:51 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 3/8] log installs and deletes Date: Thu, 27 Jun 2013 18:35:44 -0400 Message-Id: <1b6625010c06f17f7998f3df2bc36577cd07a5eb.1372372343.git.dubiousjim@gmail.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: References: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- src/commit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commit.c b/src/commit.c index 2b1eb9f..7bb0960 100644 --- a/src/commit.c +++ b/src/commit.c @@ -73,13 +73,13 @@ static int print_change(struct apk_database *db, struct apk_change *change, return FALSE; if (oneversion) { - apk_message("%s %s %s" BLOB_FMT " (" BLOB_FMT ")", + apk_lmessage("%s %s %s" BLOB_FMT " (" BLOB_FMT ")", status, msg, name->name, BLOB_PRINTF(db->repo_tags[change->new_repository_tag].tag), BLOB_PRINTF(*oneversion)); } else { - apk_message("%s %s %s" BLOB_FMT " (" BLOB_FMT " -> " BLOB_FMT ")", + apk_lmessage("%s %s %s" BLOB_FMT " (" BLOB_FMT " -> " BLOB_FMT ")", status, msg, name->name, BLOB_PRINTF(db->repo_tags[change->new_repository_tag].tag), -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---