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 11581DC019E for ; Thu, 27 Jun 2013 22:35:50 +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 0690821011 for ; Thu, 27 Jun 2013 18:35:50 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute2.internal (MEProxy); Thu, 27 Jun 2013 18:35:50 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id; s= smtpout; bh=nnsUfMPAlVBpaxqllo6wnEqqvFU=; b=FhxJaiCjozV5tDYuGYH4 qmICpgCa6TN0AyLzqPNfvPMl9SRU1YQHFvW8qj9ImMdujYiKKtlFQjz4hrVstkO/ vUfLiaXKLMYWsZQMYMMk5wt+tyrdcq517/jIeRLIWTyHlAAbT2WNMcGIvq9j4Gpb bhyquLh3x5xXu75FP5khFBM= X-Sasl-enc: JIIzsnW1nuMvGEyL85sal58X7j8yz434eNH0q5VRTdLO 1372372549 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id C4138680220 for ; Thu, 27 Jun 2013 18:35:49 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 0/8] logging framework for apk-tools Date: Thu, 27 Jun 2013 18:35:41 -0400 Message-Id: X-Mailer: git-send-email 1.8.3.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: These patches make several apk operations (default to) log into /var/log/apk. The logging can also be disabled by a command-line option. We don't try to log every error/warning/message, but only ones that you might conceivably want to come back and review some days or weeks later. The choice of which messages get logged and which don't is pretty tentative. Dubiousjim (8): add logging infrastructure log repository updates log installs and deletes log incomplete archive unpackings log overwrites log execution of install scripts log cache problems log no dirent in archive (?) src/apk.c | 4 ++++ src/apk_database.h | 2 +- src/apk_defines.h | 1 + src/apk_print.h | 12 ++++++++---- src/archive.c | 6 +++--- src/commit.c | 4 ++-- src/database.c | 27 ++++++++++++++++++++++----- src/package.c | 6 +++--- src/print.c | 36 ++++++++++++++++++++++++++++++------ src/update.c | 2 +- 10 files changed, 75 insertions(+), 25 deletions(-) -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---