mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-29 11:33:48 +01:00
11 lines
216 B
Go
11 lines
216 B
Go
|
package NetBirdSDK
|
||
|
|
||
|
import (
|
||
|
"github.com/netbirdio/netbird/util"
|
||
|
)
|
||
|
|
||
|
// InitializeLog initializes the log file.
|
||
|
func InitializeLog(logLevel string, filePath string) error {
|
||
|
return util.InitLog(logLevel, filePath)
|
||
|
}
|