Skip to content

Commit

Permalink
Improve logging and fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaavi committed Jul 28, 2023
1 parent a33526a commit 3e8c330
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions network/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package network

import (
"context"
"errors"
"fmt"
"net"
"strings"
Expand Down Expand Up @@ -338,7 +339,7 @@ func NewConnectionFromDNSRequest(ctx context.Context, fqdn string, cnames []stri
if localProfile := proc.Profile().LocalProfile(); localProfile != nil {
dnsConn.Internal = localProfile.Internal

if err := dnsConn.updateFeatures(); err != nil {
if err := dnsConn.updateFeatures(); err != nil && !errors.Is(err, access.ErrNotLoggedIn) {
log.Tracer(ctx).Warningf("network: failed to check for enabled features: %s", err)
}
}
Expand Down Expand Up @@ -380,7 +381,7 @@ func NewConnectionFromExternalDNSRequest(ctx context.Context, fqdn string, cname
if localProfile := remoteHost.Profile().LocalProfile(); localProfile != nil {
dnsConn.Internal = localProfile.Internal

if err := dnsConn.updateFeatures(); err != nil {
if err := dnsConn.updateFeatures(); err != nil && !errors.Is(err, access.ErrNotLoggedIn) {
log.Tracer(ctx).Warningf("network: failed to check for enabled features: %s", err)
}
}
Expand Down Expand Up @@ -448,7 +449,7 @@ func (conn *Connection) GatherConnectionInfo(pkt packet.Packet) (err error) {
if localProfile := conn.process.Profile().LocalProfile(); localProfile != nil {
conn.Internal = localProfile.Internal

if err := conn.updateFeatures(); err != nil {
if err := conn.updateFeatures(); err != nil && !errors.Is(err, access.ErrNotLoggedIn) {
log.Tracer(pkt.Ctx()).Warningf("network: failed to check for enabled features: %s", err)
}
}
Expand Down
2 changes: 1 addition & 1 deletion updates/helper/electron.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func EnsureChromeSandboxPermissions(reg *updater.ResourceRegistry) error {

return fmt.Errorf("failed to chmod: %w", err)
}
log.Infof("updates: fixed SUID permission for chrome-sandbox")
log.Debugf("updates: fixed SUID permission for chrome-sandbox")

return nil
}
2 changes: 1 addition & 1 deletion updates/helper/updates.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func MandatoryUpdates() (identifiers []string) {

// Stop here if we only want intel data.
if intelOnly.IsSet() {
return
return identifiers
}

// Binaries
Expand Down
6 changes: 3 additions & 3 deletions updates/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,13 +284,13 @@ func checkForUpdates(ctx context.Context) (err error) {

if err = registry.UpdateIndexes(ctx); err != nil {
err = fmt.Errorf("failed to update indexes: %w", err)
return
return //nolint:nakedret // TODO: Would "return err" work with the defer?
}

err = registry.DownloadUpdates(ctx, !forcedUpdate)
if err != nil {
err = fmt.Errorf("failed to download updates: %w", err)
return
return //nolint:nakedret // TODO: Would "return err" work with the defer?
}

registry.SelectVersions()
Expand All @@ -299,7 +299,7 @@ func checkForUpdates(ctx context.Context) (err error) {
err = registry.UnpackResources()
if err != nil {
err = fmt.Errorf("failed to unpack updates: %w", err)
return
return //nolint:nakedret // TODO: Would "return err" work with the defer?
}

// Purge old resources
Expand Down

0 comments on commit 3e8c330

Please sign in to comment.