Skip to content

Commit 147951d

Browse files
author
gauffininteractive
committed
Merge remote-tracking branch 'origin/master'
2 parents 751f9dd + 5326036 commit 147951d

File tree

6 files changed

+30
-21
lines changed

6 files changed

+30
-21
lines changed

ReadMe.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
OneTrueError
22
================================
33

4-
Open source exception handling for .NET.
4+
OneTrueError is an open source error handling service for .NET. It includes the context information that you forgot to include when you logged/reported the exception.
55

66
![](screenshot.png)
77

88

9-
[Getting started guide](http://onetrueerror.com/documentation/client/gettingstarted.md)
9+
[Getting started guide](https://www.codeproject.com/articles/1126297/onetrueerror-automated-exception-handling)
1010

1111

12+
## Love or hate our service?
13+
14+
Please write a review.
15+
16+
* [G2 Crowd](https://www.g2crowd.com/products/onetrueerror/reviews)
17+
1218

1319
## Licensing
1420

src/Server/OneTrueError.App/Core/Notifications/Tasks/SendIncidentEmail.cs

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,32 +60,35 @@ public async Task SendAsync(string idOrEmailAddress, IncidentSummaryDTO incident
6060
msg.Subject = "ReOpened: " + shortName;
6161
msg.TextBody = string.Format(@"Incident: {0}
6262
Report url: {0}/report/{1}
63-
Exception: {2}
63+
Description: {2}
64+
Exception: {3}
6465
65-
{3}
66-
", baseUrl, report.Id, report.Exception.FullName, report.Exception.StackTrace);
66+
{4}
67+
", baseUrl, report.Id, incident.Name, report.Exception.FullName, report.Exception.StackTrace);
6768
}
6869
else if (incident.ReportCount == 1)
6970
{
7071
msg.Subject = "New: " + shortName;
7172
msg.TextBody = string.Format(@"Incident: {0}
72-
Exception: {1}
73+
Description: {1}
74+
Exception: {2}
7375
74-
{2}", baseUrl, report.Exception.FullName, report.Exception.StackTrace);
76+
{3}", baseUrl, incident.Name, report.Exception.FullName, report.Exception.StackTrace);
7577
}
7678
else
7779
{
7880
msg.Subject = "Updated: " + shortName;
7981
msg.TextBody = string.Format(@"Incident: {0}
8082
Report url: {0}/report/{1}
81-
Exception: {2}
83+
Description: {2}
84+
Exception: {3}
8285
83-
{3}
84-
", baseUrl, report.Id, report.Exception.FullName, report.Exception.StackTrace);
86+
{4}
87+
", baseUrl, report.Id, incident.Name, report.Exception.FullName, report.Exception.StackTrace);
8588
}
8689

8790
var emailCmd = new SendEmail(msg);
8891
await _commandBus.ExecuteAsync(emailCmd);
8992
}
9093
}
91-
}
94+
}

src/Server/OneTrueError.Web/Areas/Admin/Views/Home/Basics.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
<label class="control-label">
1313
Base URL
1414
</label>
15-
<input type="text"
15+
<input type="url"
1616
name="BaseUrl" class="form-control" value="@Model.BaseUrl" placeholder="http://yourhostName"/>
17-
<small>Address used when visting this site.</small>
17+
<small>Address used when visiting this site.</small>
1818
</div>
1919
<div class="form-group">
2020
<label for="SupportEmail">
@@ -27,4 +27,4 @@
2727
<input type="submit" class="btn btn-primary" value="Save"/>
2828
</form>
2929
</div>
30-
</div>
30+
</div>

src/Server/OneTrueError.Web/Areas/Admin/Views/Queues/Index.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</p>
2525
<p>
2626
If you want to make sure that all reports are received ASAP at all times we recommend MSMQ queues as
27-
they are run om the local system they will be processed as long as the sever is up (no dependency on the SQL server). By using
27+
they are run om the local system they will be processed as long as the server is up (no dependency on the SQL server). By using
2828
MSMQ you can also configure a monitoring software to have alarms on the queues to see if something goes wrong.
2929
</p>
3030
<form method="post" action="@Url.Action("Index")" class="form">
@@ -94,4 +94,4 @@
9494
$('#msmq').hide();
9595
}
9696
</script>
97-
}
97+
}

src/Server/OneTrueError.Web/ViewModels/Incident/CloseViewModel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ module OneTrueError.Incident {
7676

7777
CqsClient.command(closeCmd);
7878
window.location.hash = `#/application/${this.context.routeData["applicationId"]}`;
79-
humane.log("Incident have been closed.");
79+
humane.log("Incident has been closed.");
8080
}
8181

8282
incidentId: number;
8383
}
8484

85-
}
85+
}

src/Server/OneTrueError.Web/Views/User/Settings.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h3>User information</h3>
2323
</div>
2424
</div>
2525
<div class="form-group">
26-
<label for="CellNumber" class="col-sm-2 control-label">Cellphone Number</label>
26+
<label for="MobileNumber" class="col-sm-2 control-label">Cellphone Number</label>
2727
<div class="col-sm-10">
28-
<input type="text" class="form-control" id="CellNumber" placeholder="Cellphone number" data-name="CellNumber">
28+
<input type="text" class="form-control" id="MobileNumber" placeholder="Cellphone number" data-name="MobileNumber">
2929
<p class="help-block">Use E.164 format (+&lt;countryCode&gt;&lt;number&gt;). Example: +4670123456</p>
3030
</div>
3131
</div>
@@ -71,4 +71,4 @@ <h3>Password reset</h3>
7171
<div class="row">
7272
<div class="col-lg-12">
7373
</div>
74-
</div>
74+
</div>

0 commit comments

Comments
 (0)