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)
|
|
}
|