Cleanup all the console.log

Also renamed Github to GitHub
This commit is contained in:
quadbyte 2025-08-12 14:19:58 -04:00
parent f62a0e5f83
commit 0d196b2917
11 changed files with 47 additions and 47 deletions

View file

@ -17,7 +17,7 @@ NLoader {
// Ensure panel shows itself once created
Component.onCompleted: {
console.log("[DemoPanel] Component completed, showing panel...")
console.log("[DemoPanel] Component completed, showing panel")
show()
}
@ -127,7 +127,7 @@ NLoader {
label: "Label"
description: "Description"
onToggled: function (value) {
console.log("NToggle: " + value)
console.log("[DemoPanel] NToggle:", value)
}
}
@ -150,7 +150,7 @@ NLoader {
optionsLabels: ["Cat", "Dog", "Bird", "Monkey", "Fish", "Turtle", "Elephant", "Tiger"]
currentKey: "cat"
onSelected: function (value) {
console.log("NComboBox: selected " + value)
console.log("[DemoPanel] NComboBox: selected ", value)
}
}