Created on 08-11-2016 09:18 AM - edited 09-16-2022 03:34 AM
I mean in which logs the nifi warnings and errors are stored?
Created 08-11-2016 01:13 PM
It should be in nifi-app.log... in the code it does:
context.getBulletinRepository().addBulletin(bulletin); logger.warn(message);
The logger is a standard SLF4J logger which ends up being logback controlled by the logback.xml in the conf directory:
Logger logger = LoggerFactory.getLogger(MonitorDiskUsage.class);
Created 08-11-2016 01:13 PM
It should be in nifi-app.log... in the code it does:
context.getBulletinRepository().addBulletin(bulletin); logger.warn(message);
The logger is a standard SLF4J logger which ends up being logback controlled by the logback.xml in the conf directory:
Logger logger = LoggerFactory.getLogger(MonitorDiskUsage.class);