A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
New to Modules, Need help
-
Thats my problem, I’m so new I don’t even know how to debug the module. It won’t start at all, doesn’t even display “Loading”.
-
@randal-io you can view your logs by starting the mirror with
npm start dev
or by pressingcmd+shift+i
-
-
I think it rather ironic that the quote shown above so aptly describes @cowboysdude. ;-)
Well done randal-io!
-
@Mykle1 said in New to Modules, Need help:
I think it rather ironic that the quote shown above so aptly describes @cowboysdude. ;-)
Well done randal-io!
LOTS OF MADNESS LOL
Good Job on the module! :)
-
@randal-io you also have an error in here
if (this.config.lang != "en" || "ru") { Log.error(self.name, "Please enter a supported language into the config."); }
this will always print the error message, it should be
if (this.config.lang != "en" && this.config.lang != "ru") { Log.error(self.name, "Please enter a supported language into the config."); }
-
@cowboysdude said in New to Modules, Need help:
LOTS OF MADNESS LOL
And your fair share of genius! (Guru)