| Index: vpython/application/application.go
|
| diff --git a/vpython/application/application.go b/vpython/application/application.go
|
| index e055978e0f81b89e7db436ea23d6fed8364b6312..6fb343a6d6de073b1148b4b137a4b72efe187955 100644
|
| --- a/vpython/application/application.go
|
| +++ b/vpython/application/application.go
|
| @@ -88,13 +88,7 @@ func (cfg *Config) mainDev(c context.Context, args []string) error {
|
| c := c
|
|
|
| // Install our Config instance into the Context.
|
| - c = withConfig(c, cfg)
|
| -
|
| - // Drop down to Info level debugging.
|
| - if logging.GetLevel(c) > logging.Info {
|
| - c = logging.SetLevel(c, logging.Info)
|
| - }
|
| - return c
|
| + return withConfig(c, cfg)
|
| },
|
| Commands: []*subcommands.Command{
|
| subcommands.CmdHelp,
|
|
|