JPPF Issue Tracker
star_faded.png
Please log in to bookmark issues
task_small.png
CLOSED  Task JPPF-532  -  Upgrade to latest version of SLF4J
Posted May 10, 2018 - updated May 26, 2018
icon_info.png This issue has been closed with status "Closed" and resolution "RESOLVED".
Issue details
  • Type of issue
    Task
  • Status
     
    Closed
  • Assigned to
     lolo4j
  • Progress
       
  • Type of bug
    Not triaged
  • Likelihood
    Not triaged
  • Effect
    Not triaged
  • Posted by
     lolo4j
  • Owned by
    Not owned by anyone
  • Estimated time
    Not estimated
  • Category
    Core
  • Resolution
    RESOLVED
  • Priority
    Normal
  • Targetted for
    icon_milestones.png JPPF 6.0
Issue description
The latest version (or maybe a prior) has a new API that allows writing log statements with vararg parameters, for instance:
log.debug("logging object {} with param1={}, param2={}, param3={}", this, p1, p2, p3);
In the version we currently use, we have to explicitely create an array:
log.debug("logging object {} with param1={}, param2={}, param3={}", new Object[] { this, p1, p2, p3 });

#3
Comment posted by
 lolo4j
May 26, 08:04
upgrade SLF4J to version 1.7.25