Fix order of args to a log call (exception was being treated as a {} fill-in, not the actual exception)

This commit is contained in:
2023-11-01 12:12:08 -05:00
parent a7d5741d1c
commit a2b56a8871

View File

@ -79,7 +79,7 @@ public class MetaDataProducerHelper
} }
catch(Exception e) catch(Exception e)
{ {
LOG.info("Error adding metaData from producer", logPair("producer", aClass.getSimpleName()), e); LOG.info("Error adding metaData from producer", e, logPair("producer", aClass.getSimpleName()));
} }
} }