Skip to content

Class for logging various messages from the client to the server.

License

Notifications You must be signed in to change notification settings

CrazySquirrel/CSLogger

Repository files navigation

CSLogger

npm version Code Climate Test Coverage Issue Count Donate

Logger for JavaScript messages.

Build

The repository contains pre-compiled files, but if you want to add your files and compile, then run the following commands in the repository folder.

  • npm install
  • npm run production

or

  • npm run development

The build required NodeJs version 6 or higher.

Usage

import CSLoggerClass from "CSLogger.ts";

let CSLogger = CSLoggerClass({
    loggerUrl: "http://localhost/",
    minLoggerLevel: 100,
    projectName: "",
    projectVersion: "",
});
CSLogger.log(100, "Test messange");

or

let CSLogger = require("CSLogger.js")({
    loggerUrl: "http://localhost/",
    minLoggerLevel: 100,
    projectName: "",
    projectVersion: "",
});
CSLogger.log(100, "Test messange");

About

Class for logging various messages from the client to the server.

Resources

License

Stars

Watchers

Forks

Packages

No packages published