53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
# Enable trace level reconfiguration function
|
|
# Must be present before any TRC_ trace level settings
|
|
TraceConf=true
|
|
|
|
# Trace level configuration
|
|
# BT_TRACE_LEVEL_NONE 0 ( No trace messages to be generated )
|
|
# BT_TRACE_LEVEL_ERROR 1 ( Error condition trace messages )
|
|
# BT_TRACE_LEVEL_WARNING 2 ( Warning condition trace messages )
|
|
# BT_TRACE_LEVEL_API 3 ( API traces )
|
|
# BT_TRACE_LEVEL_EVENT 4 ( Debug messages for events )
|
|
# BT_TRACE_LEVEL_DEBUG 5 ( Full debug messages )
|
|
# BT_TRACE_LEVEL_VERBOSE 6 ( Verbose messages ) - Currently supported for TRC_BTAPP only.
|
|
TRC_BTM=6
|
|
TRC_HCI=6
|
|
TRC_L2CAP=6
|
|
TRC_RFCOMM=6
|
|
TRC_OBEX=6
|
|
TRC_AVCT=6
|
|
TRC_AVDT=6
|
|
TRC_AVRC=6
|
|
TRC_AVDT_SCB=6
|
|
TRC_AVDT_CCB=6
|
|
TRC_A2D=6
|
|
TRC_SDP=6
|
|
TRC_GATT=6
|
|
TRC_SMP=6
|
|
TRC_BTAPP=6
|
|
TRC_BTIF=6
|
|
TRC_GAP=6
|
|
TRC_BNEP=6
|
|
TRC_PAN=6
|
|
TRC_HID_HOST=6
|
|
TRC_HID_DEV=6
|
|
|
|
# This is Log configuration for new C++ code using LOG() macros.
|
|
# See libchrome/base/logging.h for description on how to configure your logs.
|
|
# sample configuration:
|
|
LoggingV=--v=2
|
|
#LoggingVModule=--vmodule=*/btm/*=1,btm_ble_multi*=2,btif_*=1
|
|
|
|
# Bluetooth HCI snoop log configuration
|
|
# LOG recycle base is 10, Please DO NOT make it less than 1 or larger than 10
|
|
# i.e. If RECYCLE_RATE is set 1, about 10% oldest logs will be erased
|
|
RECYCLE_RATE=10
|
|
# Packets cache upper limit is used to do packets data flush control
|
|
# If it is set to 0, each inbound packets will be written to flash right away
|
|
PACKETS_CACHE_UPPER_LIMIT=0
|
|
# Max log per file is used to control log size for a HCI log file
|
|
# It is to avoid HCI log to large to open due to long time recording
|
|
# Unit here is mega bytes
|
|
MAX_LOG_SIZE_PER_FILE=20
|
|
|