mirror of
https://github.com/Ryujinx/Ryujinx-Ldn-Website.git
synced 2025-08-11 14:21:13 +00:00
Log redis errors correctly
This commit is contained in:
parent
ec41207426
commit
e42adddc1b
|
@ -27,7 +27,7 @@ export const redisClient = createClient({
|
||||||
});
|
});
|
||||||
|
|
||||||
redisClient.on("error", (err: Error) =>
|
redisClient.on("error", (err: Error) =>
|
||||||
winston.error("An error occurred.", { source: "Redis client", error: err })
|
loggerInstance.error("An error occurred.", { source: "Redis client", error: err })
|
||||||
);
|
);
|
||||||
|
|
||||||
// Init express server
|
// Init express server
|
||||||
|
|
Loading…
Reference in a new issue