debug\Module $panels

$panels public property List of debug panels. The array keys are the panel IDs, and values are the corresponding panel class names or configuration arrays. This will be merged with corePanels(). You may reconfigure a core panel via this property by using the same panel ID. You may also disable a core panel by setting it to be false in this property. public array|yii\debug\Panel[] $panels = []

debug\Module $logTarget

$logTarget public property public yii\debug\LogTarget $logTarget = null

debug\Module $historySize

$historySize public property The maximum number of debug data files to keep. If there are more files generated, the oldest ones will be removed. public integer $historySize = 50

debug\Module $fileMode

$fileMode public property (available since version 2.0.6) The permission to be set for newly created debugger data files. This value will be used by PHP \yii\debug\chmod() function. No umask will be applied. If not set, the permission will be determined by the current environment. public integer $fileMode = null

debug\Module $enableDebugLogs

$enableDebugLogs public property Whether to enable message logging for the requests about debug module actions. You normally do not want to keep these logs because they may distract you from the logs about your applications. You may want to enable the debug logs if you want to investigate how the debug module itself works. public boolean $enableDebugLogs = false

debug\Module $dirMode

$dirMode public property (available since version 2.0.6) The permission to be set for newly created directories. This value will be used by PHP \yii\debug\chmod() function. No umask will be applied. Defaults to 0775, meaning the directory is read-writable by owner and group, but read-only for other users. public integer $dirMode = 509

debug\Module $defaultPanel

$defaultPanel public property (available since version 2.0.7) The name of the panel that should be visible when opening the debug panel. The default value is 'log'. public string $defaultPanel = 'log'

debug\Module $debugHeaders

$debugHeaders public write-only property public void setDebugHeaders ( $event )

debug\Module $dataPath

$dataPath public property The directory storing the debugger data files. This can be specified using a path alias. public string $dataPath = '@runtime/debug'

debug\Module $controllerNamespace

$controllerNamespace public property The namespace that controller classes are in. This namespace will be used to load controller classes by prepending it to the controller class name. If not set, it will use the controllers sub-namespace under the namespace of this module. For example, if the namespace of this module is foo\bar, then the default controller namespace would be foo\bar\controllers. See also the guide section on autoloading to learn more about defining namespaces and how class