You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message: "Do you want to be notified when your AS is announcing a new prefix?",
204
204
default: true
205
205
},
206
206
207
207
{
208
-
type: 'confirm',
209
-
name: 'upstreams',
208
+
type: "confirm",
209
+
name: "upstreams",
210
210
message: "Do you want to be notified when a new upstream AS appears in a BGP path?",
211
211
default: true
212
212
},
213
213
{
214
-
type: 'confirm',
215
-
name: 'downstreams',
214
+
type: "confirm",
215
+
name: "downstreams",
216
216
message: "Do you want to be notified when a new downstream AS appears in a BGP path?",
217
217
default: true
218
218
}
@@ -253,7 +253,7 @@ export default class Input {
253
253
.catch(error=>{
254
254
console.log(error);
255
255
this.logger.log({
256
-
level: 'error',
256
+
level: "error",
257
257
message: error
258
258
});
259
259
process.exit();
@@ -262,7 +262,7 @@ export default class Input {
262
262
263
263
_reGeneratePrefixList=()=>{
264
264
this.logger.log({
265
-
level: 'info',
265
+
level: "info",
266
266
message: "Updating prefix list"
267
267
});
268
268
@@ -322,7 +322,7 @@ export default class Input {
322
322
323
323
if(newPrefixesNotMergeable.length){
324
324
this.logger.log({
325
-
level: 'info',
325
+
level: "info",
326
326
message: `The rules about ${newPrefixesNotMergeable.join(", ")} cannot be automatically added to the prefix list since their origin cannot be validated. They are not RPKI valid and they are not announced by a monitored AS. Add the prefixes manually if you want to start monitoring them.`
327
327
});
328
328
}
@@ -333,13 +333,13 @@ export default class Input {
0 commit comments