hello,
I have a krpano xml version with all the debug, logkey etc on for dev purposes.
But I also want to have a clean version where the console never opens or I see any krpano messages
other than the chrome console itself.
I set this:
function embedKrpano() {
embedpano({
html5: "auto",
mobilescale: 1.0,
id: "krpanoSWFObject",
xml: "tour.xml",
target: "tour",
consolelog: false,
logkey: false,
debugmode: false,
passQueryParameters: true,
onready: krpano_onready_callback
});
}
Display More
but I can still see the console popping up and letting me know if a file is missing or a function not loading.
Reason being, I did a database cache clear (all data comes from my cms db) and although the files are there I can still see krpano console showing with errors.
Will like to completely disable those messages for now. Is there something I need to add/change on the code above and/or to add or modify
as well in the tour.xml for a global disable (console not showing at all, including credentials etc)?
Thanks for your help,
-Manuel