Use warn rather than info when notifying about ignored conflicts
This commit is contained in:
parent
8bd254f313
commit
d9dacbc901
|
@ -1,6 +1,6 @@
|
|||
import BaseCache from "./base"
|
||||
import { getWritethroughClient } from "../redis/init"
|
||||
import { logInfo } from "../logging"
|
||||
import { logWarn } from "../logging"
|
||||
|
||||
const DEFAULT_WRITE_RATE_MS = 10000
|
||||
let CACHE: BaseCache | null = null
|
||||
|
@ -53,7 +53,7 @@ export async function put(
|
|||
throw err
|
||||
} else {
|
||||
// Swallow 409s but log them
|
||||
logInfo(`Ignoring conflict in write-through cache`)
|
||||
logWarn(`Ignoring conflict in write-through cache`)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,11 +15,11 @@ export function logAlert(message: string, e?: any) {
|
|||
console.error(`bb-alert: ${message} ${errorJson}`)
|
||||
}
|
||||
|
||||
export function logInfo(message: string) {
|
||||
console.log(`bb-info: ${message}`)
|
||||
export function logWarn(message: string) {
|
||||
console.warn(`bb-warn: ${message}`)
|
||||
}
|
||||
|
||||
export default {
|
||||
logAlert,
|
||||
logInfo,
|
||||
logWarn,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue