d13144ca90
* -- Intermediary Commit -- Just want to commit my code over the weekend, in case I spill coffee on my workstation. * Create DB models ready for write. * Handle SSE events * Update ref for stack-orchestrator * Use env in one place only. * Boot Application on PR * Update syntax * Update syntax * Correct command * Use bash instead of sh * Use until instead of while * Make linter happy and check sse subscription err * Handle Reorgs - Untested
23 lines
594 B
Go
23 lines
594 B
Go
package loghelper
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// A simple helper function that will help wrap the reorg error messages.
|
|
func LogReorgError(slot string, latestBlockRoot string, err error) *log.Entry {
|
|
return log.WithFields(log.Fields{
|
|
"err": err,
|
|
"slot": slot,
|
|
"latestBlockRoot": latestBlockRoot,
|
|
})
|
|
}
|
|
|
|
// A simple helper function that will help wrap regular reorg messages.
|
|
func LogReorg(slot string, latestBlockRoot string) *log.Entry {
|
|
return log.WithFields(log.Fields{
|
|
"slot": slot,
|
|
"latestBlockRoot": latestBlockRoot,
|
|
})
|
|
}
|