@veams/plugin-logger

The VeamsLogger plugin disables console logs by default. You can provide parameters (?devmode) in the URL to show the logs in your console.

Usage no npm install needed!

<script type="module">
  import veamsPluginLogger from 'https://cdn.skypack.dev/@veams/plugin-logger';
</script>

README

VeamsLogger plugin

The VeamsLogger plugin disables console logs by default. You can provide parameters (?devmode) in the URL to show the logs in your console.

Furthermore it gives you the possibility to add a logger (?logger) which will be displayed on other devices.

The plugin is session based, means you only need to add the parameter once you started your project.

TypeScript is supported.

Installation

NPM

npm install @veams/plugin-logger --save

Yarn

yarn add @veams/plugin-logger

Usage

import Veams from '@veams/core';
import VeamsLogger from '@veams/plugin-logger';

// Intialize core of Veams
Veams.initialize(() => {
    // Add plugins to the Veams system
    Veams.use(VeamsLogger, {
        devmodeParam: 'debug', // default: 'devmode'
        loggerParam: 'logs' // default: 'logger'
    });
});

Options

  • devmodeParam {String} ['devmode'] - You can override the url param key for the devmode which shows the logs in console.
  • loggerParam {String} ['logger'] - You can override the url param key for the logger which gets appended to the body.