We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2220a7c commit cd33466Copy full SHA for cd33466
.github/workflows/tests_deb.yml
@@ -35,6 +35,7 @@ jobs:
35
36
- name: Install functional test dependencies
37
run: |
38
+ sudo apt update
39
sudo apt install -y build-essential debhelper devscripts fakeroot lintian
40
docker network create net-test
41
python3 -m pip install --upgrade pipenv wheel
cmd/root.go
@@ -148,7 +148,7 @@ func Execute() error {
148
return fmt.Errorf("unable to load configuration: %w", err)
149
}
150
151
- if *verbose {
+ if *verbose && log.GetLevel() < log.DebugLevel {
152
log.SetLevel(log.DebugLevel)
153
154
0 commit comments