My java console is showing the following Errors: It is related to Quartz scheduler .
id: 103, tenant: 2, dep:
Dec 22, 2011 7:18:57 AM org.quartz.core.SchedulerSignalerImpl
INFO: Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
Dec 22, 2011 7:18:57 AM org.quartz.core.QuartzScheduler
INFO: Quartz Scheduler v.1.8.3 created.
Dec 22, 2011 7:18:57 AM org.quartz.plugins.management.ShutdownHookPlugin initialize
INFO: Registering Quartz shutdown hook.
Dec 22, 2011 7:18:57 AM org.quartz.simpl.RAMJobStore initialize
INFO: RAMJobStore initialized.
Dec 22, 2011 7:18:57 AM org.quartz.core.QuartzScheduler initialize
INFO: Scheduler meta-data: Quartz Scheduler (v1.8.3) ‘scheduler’ with instanceId ‘one’
Scheduler class: ‘org.quartz.core.QuartzScheduler’ - running locally.
NOT STARTED.
Currently in standby mode.
Number of jobs executed: 0
Using thread pool ‘org.quartz.simpl.SimpleThreadPool’ - with 1 threads.
Using job-store ‘org.quartz.simpl.RAMJobStore’ - which does not support persistence. and is not clustered.
Dec 22, 2011 7:18:57 AM org.quartz.impl.StdSchedulerFactory instantiate
INFO: Quartz scheduler ‘scheduler’ initialized from default resource file in Quartz package: ‘quartz.properties’
Dec 22, 2011 7:18:57 AM org.quartz.impl.StdSchedulerFactory instantiate
INFO: Quartz scheduler version: 1.8.3
Dec 22, 2011 7:18:57 AM org.quartz.core.QuartzScheduler start
INFO: Scheduler scheduler_$_one started.
Dec 22, 2011 7:19:00 AM org.quartz.utils.UpdateChecker doCheck
INFO: New Quartz update(s) found: 1.8.5
Is this because of java update version ? Please do help . Waiting for your feedback.
If you read the messages carefully you see these are not errors nor even warnings. They are marked as INFO.
So it’s just some debug information that you can safely ignore.
These messages are generated because you are using the scheduler plugin.
The scheduler plugin uses the quartz library.
Like I said, you can safely ignore these messages. They only show up in the java console (when open) on the client and are debug information only, not errors or warnings.
Thanks for your reply . But I have query . In some client machines it is showing these quartz debug informations . And in other client machines it is not showing . Is these dependent on java update version ? . And I have referred to an another servoy forum post :http://forum.servoy.com/viewtopic.php?f=15&t=16933&p=91741&hilit=quartz#p91741
Here it is mentioned . By using system.property.org.terracotta.quartz.skipUpdateCheck=true this string in the admin page . We can block the quartz update . Is this can be done ? . But I am not getting this in the admin page or servoy properties file.
As far as I can see only the last line in the log has to do with the update check. So yes you could disable that as described in the thread you linked.
But I kinda doubt it will get rid of the other initialization info. But perhaps one of the Servoy engineers can answer that one better.