WARN org.sablo.IndexPageEnhancer

Hi
I am continually getting the following error is there a way to fix this ? I have updated all of the components being used and Servoy yet it appears to still be calling this outdated file. Any ideas would be much appreciated

WARN org.sablo.IndexPageEnhancer - same lib with lower version found: {“name”:“bootstrap”,“mimetype”:“text/css”,“version”:“3.3.1”,“url”:“css/bootstrap/css/bootstrap.css”} using lib: {“name”:“bootstrap”,“mimetype”:“text/css”,“version”:“3.4.1”,“url”:“css/bootstrap/css/bootstrap.css”}

Gordon

That means that one of the ng components / ng services has a lower version of that lib. I will try to enhance that message to also list the packages/components/services.
So in the .spec file of one of the components/services that you use there is a

	"libraries": [
		(...),
		{"name":"bootstrap", "version":"3.3.1", "url":(...)},
		(...)
	],

If it’s not in the ones that your solution explicitly uses, it might be an older Servoy version using an older bootstrap inside the core components.

PS. I checked the code - it does not have that extra-info available where it logs the warning, but I made an internal case to enhance that.

great thanks !!