package main
import (
"github.com/ethereum-optimism/optimism/op-program/client"
oplog "github.com/ethereum-optimism/optimism/op-service/log"
)
func main() {
// Default to a machine parsable but relatively human friendly log format.
// Don't do anything fancy to detect if color output is supported.
logger := oplog.NewLogger(oplog.CLIConfig{
Level: "info",
Format: "logfmt",
Color: false,
})
client.Main(logger)
}
-
Adrian Sutton authored
Always builds a MIPs version of the client binary suitable for execution inside cannon.
53fefb1e