diff options
| author | Will Hawkins <[email protected]> | 2022-12-12 10:00:34 -0500 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2022-12-12 10:00:34 -0500 |
| commit | d0432fdf26e91a6d91534b450112492aabe3a896 (patch) | |
| tree | e0738a5043e9c500538577e5fafd84fa91d618da | |
| parent | a5d57b9a98122359afc19ac016d8618b43ef615d (diff) | |
[Bugfix] Keylogger use message always output
| -rw-r--r-- | lgc/lgc.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -255,6 +255,7 @@ func (lgd *LoadGeneratingConnectionDownload) Start( debugLevel debug.DebugLevel, ) bool { lgd.downloaded = 0 + lgd.debug = debugLevel lgd.clientId = utilities.GenerateUniqueId() transport := http2.Transport{} transport.TLSClientConfig = &tls.Config{} @@ -278,7 +279,6 @@ func (lgd *LoadGeneratingConnectionDownload) Start( transport.TLSClientConfig.InsecureSkipVerify = true lgd.client = &http.Client{Transport: &transport} - lgd.debug = debugLevel lgd.valid = true lgd.tracer = traceable.GenerateHttpTimingTracer(lgd, lgd.debug) |
