mirror of
https://github.com/ente-io/ente.git
synced 2025-08-08 15:30:40 +00:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import log from "@/next/log";
|
|
|
|
export function addLogLine(
|
|
msg: string | number | boolean,
|
|
...optionalParams: (string | number | boolean)[]
|
|
) {
|
|
const completeLog = [msg, ...optionalParams].join(" ");
|
|
log.info(completeLog);
|
|
}
|