3.0.0-beta2 • Published 6 years ago

elmah.io.js v3.0.0-beta2

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
6 years ago

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