[Bug 39414] Re: syslog is flooded with messages after connecting bluetooth usb dongle
rivode
bugs-launchpad-net.rivode at spamgourmet.com
Sun Dec 23 05:34:45 UTC 2007
These messages can be filtered out of syslog. The basic instructions
are here:
http://www.giacintosblog.splinder.com/post/15040472/Ubuntu%3A+Palliativo+per+il+bug+
You need to install syslog-ng, and add to /etc/syslog-ng/syslog-ng.conf:
filter f_bluetooth_error {
facility(kern) and match("hci_scodata_packet");
};
and change these lines:
filter f_auth { facility(auth, authpriv) and not filter(f_bluetooth_error); };
filter f_syslog { not facility(auth, authpriv) and not filter(f_bluetooth_error); };
filter f_kern { facility(kern) and not filter(f_bluetooth_error); };
It keeps the log lines out of /var/log, but they still show up with
dmesg.
--
syslog is flooded with messages after connecting bluetooth usb dongle
https://bugs.launchpad.net/bugs/39414
You received this bug notification because you are a member of Kernel
Bugs, which is a bug contact for linux-source-2.6.15 in ubuntu.
More information about the kernel-bugs
mailing list