File: use-upstream-go-logger.patch

package info (click to toggle)
unikmer 0.20.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,796 kB
  • sloc: sh: 116; makefile: 4
file content (26 lines) | stat: -rw-r--r-- 673 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
25
26
Description: Use github.com/op/go-logging which is already in debian
Author: Nilesh Patra <npatra974@gmail.com>
Forwarded: not-needed
Last-Update: 2021-02-21
--- a/unikmer/cmd/util-cli.go
+++ b/unikmer/cmd/util-cli.go
@@ -29,7 +29,7 @@
 
 	"github.com/pkg/errors"
 	"github.com/shenwei356/breader"
-	"github.com/shenwei356/go-logging"
+	"github.com/op/go-logging"
 	"github.com/shenwei356/util/stringutil"
 	"github.com/spf13/cobra"
 )
--- a/unikmer/main.go
+++ b/unikmer/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/unikmer/unikmer/cmd"
 )