mirror of https://github.com/status-im/go-waku.git
35 lines
536 B
Go
35 lines
536 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
logging "github.com/ipfs/go-log/v2"
|
|
"github.com/urfave/cli/v2"
|
|
"github.com/waku-org/go-waku/waku/v2/utils"
|
|
)
|
|
|
|
var options Options
|
|
|
|
func main() {
|
|
app := &cli.App{
|
|
Flags: getFlags(),
|
|
Action: func(c *cli.Context) error {
|
|
utils.InitLogger("console", "file:chat2.log")
|
|
|
|
lvl, err := logging.LevelFromString(options.LogLevel)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
logging.SetAllLoggers(lvl)
|
|
|
|
execute(options)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
err := app.Run(os.Args)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|