@comunica/logger-void

A comunica void-based logger.

Usage no npm install needed!

<script type="module">
  import comunicaLoggerVoid from 'https://cdn.skypack.dev/@comunica/logger-void';
</script>

README

Comunica Bus SPARQL Parse

npm version

A logger that voids all log messages.

Click here to learn more about logging.

This module is part of the Comunica framework, and should only be used by developers that want to build their own query engine.

Click here if you just want to query with Comunica.

Install

$ yarn add @comunica/logger-void

Usage

const newEngine = require('@comunica/actor-init-query').newEngine;
import {LoggerVoid} from "@comunica/logger-void";

const result = await myEngine.query('SELECT * WHERE { ?s ?p ?o }', {
  sources: ['http://fragments.dbpedia.org/2015/en'],
  log: new LoggerVoid(),
});