dahdi-base: Hide "Master changed to" message

Put the "Master changed to xxx/x/x" message behind a debug flag. It's an
implementation specific detail and has caused confusion with customers.
DAHDI-692

git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9299 a0bf4364-ded3-4de4-8d8a-66a801d63aff
This commit is contained in:
Russ Meyerriecks 2010-09-03 21:08:05 +00:00
parent 40ad4a85a3
commit f2fa702132

View File

@ -3536,9 +3536,11 @@ void dahdi_alarm_notify(struct dahdi_span *span)
for (x=1; x<maxspans; x++) {
if (spans[x] && !spans[x]->alarms && (spans[x]->flags & DAHDI_FLAG_RUNNING)) {
if (master != spans[x]) {
module_printk(KERN_NOTICE,
"Master changed to %s\n",
spans[x]->name);
if (debug) {
module_printk(KERN_NOTICE,
"Master changed to %s\n",
spans[x]->name);
}
}
master = spans[x];
break;