loggie-io

Log every thing in just few steps

Usage no npm install needed!

<script type="module">
  import loggieIo from 'https://cdn.skypack.dev/loggie-io';
</script>

README

Loggie.io

Start to log everything in just few clicks

Features

  • Easy to install on your website/app
  • Log with different sverity level (info, debug, warning, error, fatal)
  • Differentiate logs with channels
  • More coming soon

Installing

$ npm install loggie-io

Example

Node.js

const loggie = require('loggie-io');

loggie.init({
  secretKey: "<secret-key>",
  bucketId: "<bucket-id>"
})

Start to push logs into your bucket

info

loggie.info({
  message: "This is a info log"
})

debug

loggie.debug({
  message: "This is a debug log"
})

warning

loggie.warning({
  message: "This is a warning log"
})

error

loggie.error({
  message: "This is a error log"
})

fatal

loggie.fatal({
  message: "This is a fatl log"
})