mirror of https://github.com/databricks/cli.git
14 lines
179 B
Go
14 lines
179 B
Go
|
package project
|
||
|
|
||
|
import (
|
||
|
"log/slog"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
slog.SetDefault(slog.New(
|
||
|
slog.NewTextHandler(os.Stderr, &slog.HandlerOptions{
|
||
|
Level: slog.LevelDebug,
|
||
|
})))
|
||
|
}
|