We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1bbee57 + 87a2e0b commit f0a32c6Copy full SHA for f0a32c6
1 file changed
runtime/v2/binary.go
@@ -58,7 +58,8 @@ type binary struct {
58
59
func (b *binary) Start(ctx context.Context, opts *types.Any, onClose func()) (_ *shim, err error) {
60
args := []string{"-id", b.bundle.ID}
61
- if logrus.GetLevel() == logrus.DebugLevel {
+ switch logrus.GetLevel() {
62
+ case logrus.DebugLevel, logrus.TraceLevel:
63
args = append(args, "-debug")
64
}
65
args = append(args, "start")
0 commit comments