Reputation: 11
When starting my apache ignite integrated with spring boot Getting below errors please help.
(wrn) Failed to resolve IGNITE_HOME automatically for class codebase [class=class o.a.i.i.util.IgniteUtils, e=URI is not hierarchical] Console logging handler is not configured.
Note: default-config.xml
(cache configuration) is picked properly
Upvotes: 0
Views: 3013
Reputation: 3591
Refer to the following page for logger configuration: https://apacheignite.readme.io/docs/logging
You can explicitly configure a logger of your choice to be used for Ignite. If you configure a console appender, then it will be used to print log into console.
Upvotes: 1
Reputation: 19343
You can always set up igniteHome
property on IgniteConfiguration
bean, or actually set IGNITE_HOME
env var.
Upvotes: 1