mirror of
https://github.com/Radarr/Radarr
synced 2025-03-04 02:38:18 +00:00
updated some error logging.
This commit is contained in:
parent
381af184ce
commit
ed089b01b1
2 changed files with 4 additions and 6 deletions
|
@ -1,5 +1,4 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using FluentValidation;
|
||||
using NLog;
|
||||
using Nancy;
|
||||
|
@ -37,7 +36,7 @@ namespace NzbDrone.Api.ErrorManagement
|
|||
|
||||
}
|
||||
|
||||
_logger.ErrorException("Unexpected error", exception);
|
||||
_logger.FatalException("Request Failed", exception);
|
||||
|
||||
|
||||
return new ErrorModel()
|
||||
|
|
|
@ -62,11 +62,10 @@ define(function () {
|
|||
if (xmlHttpRequest.status === 0 && xmlHttpRequest.readyState === 0) {
|
||||
message.message = 'NzbDrone Server Not Reachable. make sure NzbDrone is running.';
|
||||
} else {
|
||||
message.message = ajaxOptions.type + " " + ajaxOptions.url + " : " + xmlHttpRequest.statusText;
|
||||
message.message = "[{0}] {1} : {2}".format(ajaxOptions.type, xmlHttpRequest.statusText, ajaxOptions.url);
|
||||
}
|
||||
|
||||
window.Messenger().post(message);
|
||||
alert('test');
|
||||
return false;
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue