10 lines
145 B
Go
10 lines
145 B
Go
package conf
|
|
|
|
// IsDebug returns whether debug is enabled or not.
|
|
func (t *Tunnel) IsDebug() (isDebug bool) {
|
|
|
|
isDebug = t.cfg.debug
|
|
|
|
return
|
|
}
|