Read the statement by Michael Teeuw here.
Config for clock not working
-
And the console error is? Or possibly it could also be in
'pm2 logs <YOUR_MM_TASK_NAME>'
… -
@KirAsh4 When I hit
<CTRL-M>
for the console (which is what I assume you mean) I doesn’t give any errors. Everything is working fine. It shows all the data correctly, but the clock is in 24 hour format. It’s almost like it’s just omitting the config section, and moving on. Though it says "No helper found for the module: clock. But I am pretty sure it always has said that.Thanks!
-
Had the same issue. Try removing the ’ marks before and after “true” or “false”
like this
config: { displaySeconds: false, }
worked for me ;)
Note from admin: Please use Markdown on code snippets!
-
yes true and false are booleans and no strings, so you need to remove the quotes
-
@strawberry-3-141 Try
timeFormat: 12,
instead oftimeformat: 12,
.Capitalization has gotten me more times that I can count.