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/linux/ogOperations.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src/linux') diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py index 63afd12..44684e9 100644 --- a/src/linux/ogOperations.py +++ b/src/linux/ogOperations.py @@ -9,13 +9,14 @@ import os import subprocess from subprocess import CalledProcessError +from src.log import OgError from src.ogRest import ThreadState class OgLinuxOperations: def _restartBrowser(self, url): - raise NotImplementedError + raise OgError('Function not implemented') def poweroff(self): os.system('systemctl poweroff') @@ -41,25 +42,25 @@ class OgLinuxOperations: return 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": "LINUX"} -- cgit v1.2.3-18-g5258