mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 03:02:07 +00:00
add file picker, add library file picker patch, bump lib, logger tweaks
This commit is contained in:
@@ -19,7 +19,7 @@ export const debug = (name: string, ...args: any[]) => {
|
||||
};
|
||||
|
||||
export const error = (name: string, ...args: any[]) => {
|
||||
console.log(
|
||||
console.error(
|
||||
`%c Decky %c ${name} %c`,
|
||||
'background: #16a085; color: black;',
|
||||
'background: #FF0000;',
|
||||
@@ -40,6 +40,10 @@ class Logger {
|
||||
debug(...args: any[]) {
|
||||
debug(this.name, ...args);
|
||||
}
|
||||
|
||||
error(...args: any[]) {
|
||||
error(this.name, ...args);
|
||||
}
|
||||
}
|
||||
|
||||
export default Logger;
|
||||
|
||||
Reference in New Issue
Block a user