File: use-upstream-go-logger.patch

package info (click to toggle)
seqkit 2.10.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 72,284 kB
  • sloc: sh: 940; perl: 114; makefile: 14
file content (24 lines) | stat: -rw-r--r-- 593 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Author: Nilesh Patra <npatra974@gmail.com>
Description: Use github.com/op/go-logging which is already in debian
Last changed: Mon June 29 2020
--- a/seqkit/main.go
+++ b/seqkit/main.go
@@ -26,7 +26,7 @@
 	"runtime"
 
 	colorable "github.com/mattn/go-colorable"
-	"github.com/shenwei356/go-logging"
+	"github.com/op/go-logging"
 	"github.com/shenwei356/seqkit/v2/seqkit/cmd"
 )
 
--- a/seqkit/cmd/logging.go
+++ b/seqkit/cmd/logging.go
@@ -20,6 +20,6 @@
 
 package cmd
 
-import "github.com/shenwei356/go-logging"
+import "github.com/op/go-logging"
 
 var log = logging.MustGetLogger("seqkit")