aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/vespa/target.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/vespa/target.go')
-rw-r--r--client/go/vespa/target.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/vespa/target.go b/client/go/vespa/target.go
index 747fd2d345e..99da625cf0b 100644
--- a/client/go/vespa/target.go
+++ b/client/go/vespa/target.go
@@ -412,7 +412,7 @@ func (t *cloudTarget) printLog(response jobResponse, last int64) int64 {
var msgs []logMessage
for step, stepMsgs := range response.Log {
for _, msg := range stepMsgs {
- if step == "copyVespaLogs" && LogLevel(msg.Type) > t.logOptions.Level {
+ if step == "copyVespaLogs" && LogLevel(msg.Type) > t.logOptions.Level || LogLevel(msg.Type) == 3 {
continue
}
msgs = append(msgs, msg)