4
4
"fmt"
5
5
"github.com/Mmx233/CodeCli/internal/global"
6
6
"github.com/Mmx233/CodeCli/pkg/file"
7
- " log"
7
+ log "github.com/sirupsen/logrus "
8
8
"os"
9
9
"strings"
10
10
"time"
@@ -22,7 +22,7 @@ func Clear(t time.Duration, yes, force bool, addresses ...string) error {
22
22
var project * Project
23
23
project , err = CompleteAddrToProject (addr )
24
24
if err != nil {
25
- log .Printf ("warning: addr %s occur error: %v\n " , addr , err )
25
+ log .Warnf ("warning: addr %s occur error: %v\n " , addr , err )
26
26
continue
27
27
}
28
28
projectPaths = append (projectPaths , project .Path )
@@ -59,18 +59,18 @@ func Clear(t time.Duration, yes, force bool, addresses ...string) error {
59
59
for _ , path := range projectPaths {
60
60
isClean , err = IsRepoClean (path )
61
61
if err != nil {
62
- log .Printf ( "warning: %s isn't a git repo: %v." , path , err )
62
+ log .Warnf ( " %s isn't a git repo: %v." , path , err )
63
63
continue
64
64
} else if ! isClean {
65
- log .Printf ( "warning: %s should be cleared, but there are local changes." , path )
65
+ log .Warnf ( " %s should be cleared, but there are local changes." , path )
66
66
} else {
67
67
projectPure = append (projectPure , path )
68
68
}
69
69
}
70
70
projectPaths = projectPure
71
71
}
72
72
if len (projectPaths ) != 0 {
73
- log .Println ( "info: following projects is going to be cleared." )
73
+ log .Infoln ( " following projects is going to be cleared." )
74
74
fmt .Println (strings .Join (projectPaths , "\n " ))
75
75
76
76
if ! yes && ! force {
@@ -89,9 +89,9 @@ func Clear(t time.Duration, yes, force bool, addresses ...string) error {
89
89
log .Printf ("warning: remove project %s failed: %v" , path , err )
90
90
}
91
91
}
92
- log .Println ( "info: clean task completed." )
92
+ log .Infoln ( " clean task completed." )
93
93
} else {
94
- log .Println ( "info: no project to clear." )
94
+ log .Infoln ( " no project to clear." )
95
95
}
96
96
return nil
97
97
}
0 commit comments