mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-03 17:39:42 +02:00
improved debug & console outputs
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
from core.utils.data.models import Download, DownloadList
|
from core.utils.data.models import Download, DownloadList
|
||||||
from core.utils.data.state import state
|
from core.utils.data.state import state
|
||||||
from dataclasses import asdict
|
from dataclasses import asdict
|
||||||
|
from datetime import datetime
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
@@ -165,11 +166,14 @@ def set_main_window(window):
|
|||||||
_main_window = window
|
_main_window = window
|
||||||
|
|
||||||
def consoleLog(text):
|
def consoleLog(text):
|
||||||
|
now = datetime.now()
|
||||||
|
current_time = now.strftime("%H:%M:%S")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from core.interface.gui import MainWindow
|
from core.interface.gui import MainWindow
|
||||||
MainWindow.add_log(text)
|
MainWindow.add_log(f"[{current_time}] {text}")
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if state.debug:
|
if state.debug:
|
||||||
print(text)
|
print(f"[{current_time}] {text}")
|
||||||
Reference in New Issue
Block a user