Skip to content

MarcSchaetz/vuejs3-logger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vuejs-logger

codecov GitHub license

Provides customizable logging functionality for Vue.js. Compatible with Vue2.

Table of Contents

Introduction

vuejs-logger is a logging library that enables logging for Vue applications. It restricts log messages that are higher the specified log level. Features include :

  • Colored console messages for $log.warning, $log.error and $log.fatal.
  • Possibility to automatically JSON.stringify() the properties passed to the logger.
  • Possibility to display the log level in the console.
logLevels :  ['debug', 'info', 'warn', 'error', 'fatal']

Demo

@ https://www.webpackbin.com/bins/-KpB0UbGiG2PeFDmqjwi

Install

This project uses node and npm. Go check them out if you don't have them locally installed!

$ npm install vuejs-logger --save-exact

Usage

Below you can find an example of how to use vuejs-logger :

import VueLogger from 'vuejs-logger'

const options = {
    logLevel : 'debug',
    // optional : defaults to false if not specified
    stringifyArguments : false,
    // optional : defaults to false if not specified
    showLogLevel : false
}

Vue.use(VueLogger, options)
new Vue({
    data() {
        return {
            a : 'a',
            b : 'b'
        }
    },

    created() {
        this.$log.debug('test', this.a, 123)
        this.$log.info('test', this.b)
        this.$log.warn('test')
        this.$log.error('test')
        this.$log.fatal('test')
    }
})

Maintainers

@justinkames.

Contribute

Feel free to dive in! Open an issue or submit PRs.

vuejs-logger follows the Contributor Covenant Code of Conduct.

License

MIT © Justin Kames

About

Provides customizable logging functionality for Vue.js. Compatible with Vue3.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 97.1%
  • JavaScript 2.9%