* [Patch 09/12] tabled: drop double prefixing
@ 2010-04-18 4:42 Pete Zaitcev
2010-04-19 4:48 ` Jeff Garzik
0 siblings, 1 reply; 2+ messages in thread
From: Pete Zaitcev @ 2010-04-18 4:42 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Project Hail List
On Fedora 14, the following is seen in syslog:
Apr 17 19:58:52 niphredil tabled: tabled: connecting to site
hitlain.zaitcev.lan:8083: No route to host
Apr 17 19:58:56 niphredil tabled: tabled: DB_ENV->rep_elect:WARNING:
nvotes (1) is sub-majority with nsites (2)
Drop the extra prefix, it only wastes screen space.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
---
lib/tdb.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
commit eb60e6e5c97fe316d23b9b21ba020bca924e879e
Author: Master <zaitcev@lembas.zaitcev.lan>
Date: Sat Apr 17 20:31:56 2010 -0600
Fix double tagging in syslog.
diff --git a/lib/tdb.c b/lib/tdb.c
index cd65371..12ff231 100644
--- a/lib/tdb.c
+++ b/lib/tdb.c
@@ -38,7 +38,12 @@ enum {
static void db4syslog(const DB_ENV *dbenv, const char *errpfx, const char *msg)
{
- syslog(LOG_WARNING, "%s: %s", errpfx, msg);
+ /*
+ * Since we use syslog, we discard the prefix set in tdb_init,
+ * because syslog adds our own prefix too. The errpfx would be
+ * useful if we weren't dumping to syslog here.
+ */
+ syslog(LOG_WARNING, "%s", msg);
}
static int buckets_owner_idx(DB *secondary, const DBT *pkey, const DBT *pdata,
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Patch 09/12] tabled: drop double prefixing
2010-04-18 4:42 [Patch 09/12] tabled: drop double prefixing Pete Zaitcev
@ 2010-04-19 4:48 ` Jeff Garzik
0 siblings, 0 replies; 2+ messages in thread
From: Jeff Garzik @ 2010-04-19 4:48 UTC (permalink / raw)
To: Pete Zaitcev; +Cc: Project Hail List
On 04/18/2010 12:42 AM, Pete Zaitcev wrote:
> On Fedora 14, the following is seen in syslog:
>
> Apr 17 19:58:52 niphredil tabled: tabled: connecting to site
> hitlain.zaitcev.lan:8083: No route to host
> Apr 17 19:58:56 niphredil tabled: tabled: DB_ENV->rep_elect:WARNING:
> nvotes (1) is sub-majority with nsites (2)
>
> Drop the extra prefix, it only wastes screen space.
>
> Signed-off-by: Pete Zaitcev<zaitcev@redhat.com>
>
> ---
> lib/tdb.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
applied 9-12
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-04-19 4:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-18 4:42 [Patch 09/12] tabled: drop double prefixing Pete Zaitcev
2010-04-19 4:48 ` Jeff Garzik
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.