1## 2## Driver for USB Audio Device Class devices. 3## Copyright (c) 2009-13 S.Zharski <imker@gmx.li> 4## Distributed under the terms of the MIT license. 5## 6 7## trace [mask] - activate different tracing levels 8## mask - decimal or hexadecimal number combined from the following bits 9## 0x01 - severe errors 10## 0x02 - general messages 11## 0x04 - controls map parsing and mixer control 12## 0x08 - driver API calls 13## 0x10 - data flow (without descriptors) 14## 0x20 - dump iso descriptors 15## 0x40 - USB audio control parsing 16## default value: 0x01 17 18#trace 0x7F 19 20## logfile [full path to private log file] 21## default path value: /var/log/usb_asix.log 22## if disabled - all output goes to syslog 23 24logfile /boot/home/usb_audio.log 25 26## reset_logfile [on|off] - truncate private log file on driver/system restart 27## default value: off 28## 29 30# reset_logfile off 31 32## add_timestamp [on|off] - add time of writing the string in private log file. 33## default value: on 34## 35 36# add_timestamp off 37