This is an automated email from the ASF dual-hosted git repository.

srijeet0406 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
     new 1c11f7f0b0 Removed Warn in cookie.go when cookie is empty (#7513)
1c11f7f0b0 is described below

commit 1c11f7f0b01ac164cbf73a9f1c8a5827c02b5cd2
Author: Kurtis Michie <[email protected]>
AuthorDate: Wed May 10 17:05:52 2023 -0600

    Removed Warn in cookie.go when cookie is empty (#7513)
---
 traffic_ops/traffic_ops_golang/tocookie/cookie.go | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/traffic_ops/traffic_ops_golang/tocookie/cookie.go 
b/traffic_ops/traffic_ops_golang/tocookie/cookie.go
index 2a9ba0911c..e4b6126419 100644
--- a/traffic_ops/traffic_ops_golang/tocookie/cookie.go
+++ b/traffic_ops/traffic_ops_golang/tocookie/cookie.go
@@ -22,8 +22,6 @@ import (
        "net/http"
        "strings"
        "time"
-
-       "github.com/apache/trafficcontrol/lib/go-log"
 )
 
 const GeneratedByStr = "trafficcontrol-go-tocookie"
@@ -48,7 +46,6 @@ func checkHmac(message, messageMAC, key []byte) bool {
 
 func Parse(secret, cookie string) (*Cookie, error, error) {
        if cookie == "" {
-               log.Warnf("cookie is empty or missing")
                return nil, nil, nil
        }
 

Reply via email to