mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-28 15:32:50 -05:00
meta: log level re-work
This commit is contained in:
@@ -235,11 +235,11 @@ Item {
|
||||
Connections {
|
||||
target: PluginService
|
||||
function onPluginLoaded(pluginId) {
|
||||
console.log("DankBar: Plugin loaded:", pluginId)
|
||||
console.info("DankBar: Plugin loaded:", pluginId)
|
||||
SettingsData.widgetDataChanged()
|
||||
}
|
||||
function onPluginUnloaded(pluginId) {
|
||||
console.log("DankBar: Plugin unloaded:", pluginId)
|
||||
console.info("DankBar: Plugin unloaded:", pluginId)
|
||||
SettingsData.widgetDataChanged()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ Item {
|
||||
keyboard.target = keyboard_controller.target;
|
||||
isKeyboardActive = true;
|
||||
} else
|
||||
console.info("The keyboard is already shown");
|
||||
console.log("The keyboard is already shown");
|
||||
}
|
||||
|
||||
function hide() {
|
||||
@@ -26,7 +26,7 @@ Item {
|
||||
keyboard.destroy();
|
||||
isKeyboardActive = false;
|
||||
} else
|
||||
console.info("The keyboard is already hidden");
|
||||
console.log("The keyboard is already hidden");
|
||||
}
|
||||
|
||||
// private
|
||||
|
||||
Reference in New Issue
Block a user