You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: httpreplay/common.go
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,12 @@ package httpreplay
4
4
5
5
import (
6
6
"fmt"
7
-
"gopkg.in/yaml.v2"
8
7
"log"
9
8
"net/http"
10
9
"os"
11
10
"path/filepath"
11
+
12
+
"gopkg.in/yaml.v2"
12
13
)
13
14
14
15
funcinitDebugStyle() {
@@ -26,7 +27,10 @@ var currentLogger *log.Logger
26
27
// DebugLogf logs a formatted string to stderr. It should be considered temporary, and in a release version either removed or replaced with a passed-in logging interface.
0 commit comments