- http://www.errorify.com/ - source maps
- http://errorception.com/ - translate error messages to English
- http://www.exceptionhub.com/
- http://jserrlog.appspot.com/
- http://www.muscula.com/ - source maps, translate error messages to English
- https://www.airbrake.io/ - tracekit, source maps
- http://www.errorstack.com/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'), | |
gulpif = require('gulp-if'), | |
less = require('gulp-less'), | |
autoprefixer = require('gulp-autoprefixer'), | |
minifycss = require('gulp-minify-css'), | |
rename = require('gulp-rename'), | |
clean = require('gulp-clean'), | |
runSequence = require('run-sequence'), | |
concat = require('gulp-concat'), | |
uglify = require('gulp-uglify'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration> | |
<system.web> | |
<httpModules> | |
<remove name="ExceptionlessModule"/> | |
<add name="ExceptionlessModule" type="Exceptionless.Web.ExceptionlessModule, Exceptionless.Web" /> | |
</httpModules> | |
</system.web> | |
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
internal static readonly TraceSource _traceSource = new TraceSource("MyLogSource"); | |
ExceptionlessTraceListener traceListener = Trace.Listeners.OfType<ExceptionlessTraceListener>().FirstOrDefault(); | |
if (traceListener != null) | |
_traceSource.Listeners.Add(traceListener); | |
OR | |
<system.diagnostics> | |
<sharedListeners> | |
<add name="DiskLog" type="System.Diagnostics.TextWriterTraceListener" traceOutputOptions="DateTime" initializeData="MyLog.log" /> |
A curated list by Eric Elliott and friends. Suggest links in the comments below.
This is a very exclusive collection of only must-have JavaScript links. I'm only listing my favorite links. Nothing else makes the cut. Feel free to suggest links if you think they're good enough to make this list. The really curious should feel free to browse the comments to find other links. I can't guarantee the quality of links in the comments.
Some of these links are affiliate links, meaning that if you make a purchase, I might earn a little money. This has absolutely no bearing on whether or not links make the list. None, whatsoever. However, it does allow me more resources to fight poverty with code. Every little bit counts.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Exceptionless", | |
"services": { | |
"query": { | |
"list": { | |
"0": { | |
"id": 0, | |
"color": "#7EB26D", | |
"alias": "", | |
"pin": false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// There are two ways to create an plugin: | |
public class UniqueUserIdentifierPlugin : IEventPlugin { | |
public void Run(EventPluginContext context) { | |
if (!ctx.Client.Configuration.IncludePrivateInformation) | |
return; | |
// Only update it if it's not currently set. | |
var user = context.Event.GetUserIdentity(); | |
if (user != null) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "usage", | |
"source": "Searching", | |
"tags": [ | |
"Signup", | |
"GitHub" | |
], | |
"geo": "43.595089, -88.444602", | |
"data": { | |
"Filter": "tag:GitHub", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Exceptionless.Plugins; | |
namespace Exceptionless.SampleConsole.Plugins { | |
[Priority(1)] | |
public class VerifyAggregateException : IEventPlugin { | |
public void Run(EventPluginContext context) { | |
if (!context.Event.IsError() || !context.ContextData.HasException()) | |
return; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// I'm working on the client api for submitting log messages, feature usages and exceptions to https://github.com/exceptionless/Exceptionless.. | |
// Please leave a comment with what you like or what you prefer. | |
// ------ log messages ----- | |
//Considerations: only message param is required. | |
// I like this as it feels native to js, but I don't like that source is the first, | |
// when it could be inferred if not set.. You could find yourself doing client.log(null, message) all over.. | |
client.log(source, message, level); |
OlderNewer