This package has been deprecated

Author message:

This package has been renamed to elmah.io.javascript.

elmah.io.js
TypeScript icon, indicating that this package has built-in type declarations

3.0.0-beta2 • Public • Published

elmah.io.js

license

For the most recent documentation, visit Logging to elmah.io from JavaScript.

Initialization

Immediately-Invoked Function Expression (IIFE)

<script src="elmahio.js?apiKey=YOUR-API-KEY&logId=YOUR-LOG-ID" type="text/javascript"></script>

UMD Constructor with options

<script src="elmahio.js" type="text/javascript"></script>
<script type="text/javascript">
  var log = new Elmahio({
    apiKey: 'YOUR-API-KEY',
    logId: 'YOUR-LOG-ID',
  });
</script>

Default options

new Elmahio({
  apiKey: null,
  logId: null,
  debug: false,
  application: null,
  filter: null
});

Manual logging

Works only with UMD Constructor !

var log = new Elmahio({
  apiKey: 'YOUR-API-KEY',
  logId: 'YOUR-LOG-ID',
});

log.verbose(msg);
log.verbose(msg, error);

log.debug(msg);
log.debug(msg, error);

log.information(msg);
log.information(msg, error);

log.warning(msg);
log.warning(msg, error);

log.error(msg);
log.error(msg, error);

log.fatal(msg);
log.fatal(msg, error);

Where msg is a text string and error is a JavaScript Error Object.

Acknowledgments

/elmah.io.js/

    Package Sidebar

    Install

    npm i elmah.io.js

    Homepage

    elmah.io

    Weekly Downloads

    5

    Version

    3.0.0-beta2

    License

    Apache-2.0

    Unpacked Size

    173 kB

    Total Files

    11

    Last publish

    Collaborators

    • elmah.io