mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-05 00:26:39 +00:00
13 lines
240 B
Go
13 lines
240 B
Go
//go:build ios || tvos
|
|
|
|
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)
|
|
}
|