Skip to content

Commit 9406271

Browse files
committed
fix(BRE2-872): Remove excess logging, emojis
1 parent 9cbd8cb commit 9406271

5 files changed

Lines changed: 67 additions & 68 deletions

File tree

v1/providers/launchpad/instance_create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func (l launchpadCreateAttrs) generateTags(cloudCredRefID string) v1.Tags {
132132

133133
func (c *LaunchpadClient) getLaunchpadIPAllowlist(ctx context.Context, firewallRules v1.FirewallRules) []string {
134134
if len(firewallRules.EgressRules) > 0 {
135-
c.logger.Info(ctx, "cloud/launchpad egress rules not supported", v1.LogField("egressRules", firewallRules.EgressRules))
135+
c.logger.Debug(ctx, "cloud/launchpad egress rules not supported", v1.LogField("egressRules", firewallRules.EgressRules))
136136
}
137137
ips := []string{}
138138
for _, rule := range firewallRules.IngressRules {

v1/providers/launchpad/utils.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import (
1212
)
1313

1414
func (c *LaunchpadClient) handleLaunchpadAPIErr(ctx context.Context, resp *http.Response, err error) error {
15-
c.logger.Info(ctx, "Launchpad Error", v1.LogField("status", resp.Status))
1615
body := ""
1716
defer errors.HandleErrDefer(resp.Body.Close)
1817
if apiErr, ok := err.(openapi.GenericOpenAPIError); ok {

0 commit comments

Comments
 (0)