Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
simonvbrae committed Nov 13, 2024
1 parent 8a7e47d commit 19394a5
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/ldf-client-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ const workerToWindowHandler = new WorkerToWindowHandler(self);

function initEngine(config) {
// Create an engine lazily
console.log("engine");
console.log(engine);
console.log("require('my-comunica-engine')");
console.log(require('my-comunica-engine'));
if (!engine)
engine = new QueryEngineBase(require('my-comunica-engine')());

Expand All @@ -48,13 +44,8 @@ var handlers = {

// Create a client to fetch the fragments through HTTP
config.context.log = logger;
console.log("config.query");
console.log(config.query);
console.log("config.context");
console.log(config.context);
engine.query(config.query, config.context)
.then(async function (result) {
console.log("then engine.query");
// Post query metadata
postMessage({ type: 'queryInfo', queryType: result.resultType });

Expand Down Expand Up @@ -107,7 +98,6 @@ var handlers = {
}
}
}).catch(postError);
console.log("2 post engine.query");
},

// Stop the execution of the current query
Expand Down

0 comments on commit 19394a5

Please sign in to comment.