summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-02-03 21:07:47 -0500
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-02-03 21:07:47 -0500
commitc269469576e454a1c636b1e3ceff4f5a8b44ebd0 (patch)
tree39a5a0988642bc957e6cb6659209dbeeb07839c3 /main.py
parent96c76b19abaea42044ac33436cc70e0bc586fd84 (diff)
downloadDecky-Framegen-0.7.1-trunk.tar.gz
Decky-Framegen-0.7.1-trunk.zip
bump ver, add debug library list from mainv0.7.1-trunk
Diffstat (limited to 'main.py')
-rw-r--r--main.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.py b/main.py
index 6cd6231..3b7b1e9 100644
--- a/main.py
+++ b/main.py
@@ -141,4 +141,8 @@ class Plugin:
return {"status": "success", "games": filtered_games}
except Exception as e:
+ decky.logger.error(str(e))
return {"status": "error", "message": str(e)}
+
+ async def log_error(self, error: str) -> None:
+ decky.logger.error(f"FRONTEND: {error}")