Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
subugoe
metsimporter
Commits
90f073a4
Commit
90f073a4
authored
Jun 16, 2022
by
Joerg-Holger Panzer
Browse files
Remove log output
simplify the log
parent
da6d1e8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
web/web.go
View file @
90f073a4
...
...
@@ -704,10 +704,10 @@ func existInRedisHQueue(queue string, key string) bool {
val
,
err
:=
redisClient
.
HGet
(
queue
,
key
)
.
Result
()
if
err
!=
nil
{
makeLogEntry
(
nil
)
.
Infof
(
"id %s not yet in the queue %s (%v)"
,
key
,
queue
,
val
)
//
makeLogEntry(nil).Infof("id %s not yet in the queue %s (%v)", key, queue, val)
return
false
}
else
{
makeLogEntry
(
nil
)
.
Infof
(
"id %s is in the queue %s (%v)"
,
key
,
queue
,
val
)
//
makeLogEntry(nil).Infof("id %s is in the queue %s (%v)", key, queue, val)
return
true
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment