mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-19 13:40:44 +00:00
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:
@ -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()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user