Deactivate client logging

This commit is contained in:
Stephan Porada 2020-09-16 14:50:00 +02:00
parent dbf5affffc
commit ad21fe178c
2 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ document.addEventListener("DOMContentLoaded", () => {
let corpusId = {{ corpus_id }} let corpusId = {{ corpus_id }}
const client = new Client({'corpusId': corpusId, const client = new Client({'corpusId': corpusId,
'socket': nopaque.socket, 'socket': nopaque.socket,
'logging': true, 'logging': false,
'dynamicMode': true}); 'dynamicMode': true});
/** /**
* Initializing the results object as a model holding all the data of a * Initializing the results object as a model holding all the data of a

View File

@ -122,7 +122,7 @@ document.addEventListener("DOMContentLoaded", () => {
// Import metadata from DB passed to this view // Import metadata from DB passed to this view
const metaDataJson = {{ query_metadata|tojson|safe }}; const metaDataJson = {{ query_metadata|tojson|safe }};
// Initialize the client with dynamicMode set to false. // Initialize the client with dynamicMode set to false.
const client = new Client({'logging': true, const client = new Client({'logging': false,
'dynamicMode': false, 'dynamicMode': false,
'fullContext': metaDataJson.fullContext}); 'fullContext': metaDataJson.fullContext});
/** /**