mirror of
https://github.com/cyberarm/w3d_hub_linux_launcher.git
synced 2025-12-16 17:22:35 +00:00
Use proper logging, more errors from tasks should now trigger showing the error dialog instead of siliently failing
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
class W3DHub
|
||||
class ApplicationManager
|
||||
class Importer < Task
|
||||
LOG_TAG = "W3DHub::ApplicationManager::Importer".freeze
|
||||
|
||||
def type
|
||||
:importer
|
||||
end
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
class W3DHub
|
||||
class ApplicationManager
|
||||
class Installer < Task
|
||||
LOG_TAG = "W3DHub::ApplicationManager::Installer".freeze
|
||||
|
||||
def type
|
||||
:installer
|
||||
end
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
class W3DHub
|
||||
class ApplicationManager
|
||||
class Repairer < Installer
|
||||
LOG_TAG = "W3DHub::ApplicationManager::Repairer".freeze
|
||||
|
||||
def type
|
||||
:repairer
|
||||
end
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
class W3DHub
|
||||
class ApplicationManager
|
||||
class Uninstaller < Task
|
||||
LOG_TAG = "W3DHub::ApplicationManager::Uninstaller".freeze
|
||||
|
||||
def type
|
||||
:uninstaller
|
||||
end
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
class W3DHub
|
||||
class ApplicationManager
|
||||
class Updater < Installer
|
||||
LOG_TAG = "W3DHub::ApplicationManager::Updater".freeze
|
||||
|
||||
def type
|
||||
:updater
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user