Hi Yves,
Please, could you specify the exact version of the library in use?
I can confirm that the behavior that you experienced is not the one expected.
Could you repeat the same test with one of our demo, such as this
"StockListDemo_Basic".
In addition, if you are able to capture the console output of your client application, please add the following to the page (might obviously need changes depending on the kind of library you're using):
[SYNTAX=JS]require(["SimpleLoggerProvider","ConsoleAppender","LightstreamerClient","LogMessages"],
function(SimpleLoggerProvider,ConsoleAppender,LightstreamerClient) {
var loggerProvider = new SimpleLoggerProvider();
LightstreamerClient.setLoggerProvider(loggerProvider);
var cats = ["lightstreamer.stream","lightstreamer.protocol","lightstreamer.session","lightstreamer.actions","lightstreamer.sharing"];
for (var i=0; i<cats.length; i++) {
var myAppender = new ConsoleAppender("DEBUG",cats
);
loggerProvider.addLoggerAppender(myAppender);
}
});
[/SYNTAX]
the log will appear in the browser console.
Regards,
Giuseppe