summaryrefslogtreecommitdiff
path: root/scan.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-07 18:53:10 -0600
committerJeff Carr <[email protected]>2025-01-07 18:53:10 -0600
commit51e34a86ff471e4e4a9f1641da6419cfc3066671 (patch)
tree344879aedf367f39d4dffe5bd7ca48a6e603ee33 /scan.go
parenta8088938d255c068b1c465ad19cdaf8e9b07c56c (diff)
move xterm here
Diffstat (limited to 'scan.go')
-rw-r--r--scan.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/scan.go b/scan.go
index c68828d..f13f83a 100644
--- a/scan.go
+++ b/scan.go
@@ -47,12 +47,12 @@ func (r *RepoRow) UpdatePb(newpb *gitpb.Repo) {
func (r *RepoRow) NewScan() int {
var changed int = 0
if r.Status == nil {
- log.Log(REPOWARN, "repo.Status = nil. not initialized for some reason")
+ log.Log(WARN, "repo.Status = nil. not initialized for some reason")
return changed
}
pb := r.pb
if pb == nil {
- log.Log(REPOWARN, "NewScan() pb = nil")
+ log.Log(WARN, "NewScan() pb = nil")
return changed
}