All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.overview.resources.js.app.logging.js Maven / Gradle / Ivy

Go to download

Runs multiple web applications in multiple tomcats on a single machine. Stool is a command line tool that provides a lifecycle for stages: create, configure, build, run and remove. A stage contains web applications, that may come in different flavors: Maven war projects or artifacts (GAV coordinates).

The newest version!
Driftwood.setServerPath("/error/?payload=");
Driftwood.exceptionLevel("DEBUG");
var log = log || {};
log = {
    logger: {},

    init: function () {
        logger = new Driftwood.logger();
        logger.setServerPath("/error/?payload=");
        logger.exceptionLevel("DEBUG");
    },

    error: function (payload) {
        logger.error(payload);
    },
    debug: function (payload) {
        logger.debug(payload);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy