From 73ecb48113eb8d2a37cee89e3481415089867709 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Thu, 8 Aug 2024 14:25:00 +0200 Subject: src: log without backtrace in not implemented functions Don't log a backtrace when a not implemented function is called in ogClient. Log a "Function not implemented" message. --- src/windows/ogOperations.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src/windows/ogOperations.py') diff --git a/src/windows/ogOperations.py b/src/windows/ogOperations.py index 45413ba..5ac9c9f 100644 --- a/src/windows/ogOperations.py +++ b/src/windows/ogOperations.py @@ -12,6 +12,7 @@ import subprocess from subprocess import CalledProcessError import multiprocessing as mp from multiprocessing import Process, freeze_support +from src.log import OgError from PIL import Image, ImageDraw from pystray import Icon, Menu, MenuItem @@ -68,7 +69,7 @@ class OgWindowsOperations: systray_p.start() def _restartBrowser(self, url): - raise NotImplementedError + raise OgError('Function not implemented') def poweroff(self): systray_p.terminate() @@ -96,25 +97,25 @@ class OgWindowsOperations: return (result.returncode, cmd, result.stdout) def session(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def hardware(self, path, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def setup(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def image_restore(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def image_create(self, path, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def cache_delete(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def cache_fetch(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def refresh(self, ogRest): return {"status": "WIN"} -- cgit v1.2.3-18-g5258