Remove annoying notification

This commit is contained in:
Benjamin Drieu 2021-12-01 16:24:18 +01:00
parent 73a89920ff
commit 4b3eca677b
1 changed files with 4 additions and 3 deletions

View File

@ -96,9 +96,10 @@ class GenericServer {
{
log ( '>>> Error: ' + message.reason_phrase );
log ( '>>> Data: ' + message.data );
Main.notifyError ( 'Monito: ' + this.name,
'URL: ' + this.urlcgi + "\n" +
message.status_code + ': ' + message.reason_phrase );
// TODO: add pref for that
// Main.notifyError ( 'Monito: ' + this.name,
// 'URL: ' + this.urlcgi + "\n" +
// message.status_code + ': ' + message.reason_phrase );
this.error = message.reason_phrase;
return null;
}