Bug 772278 - trivial: fix log message
Summary: trivial: fix log message
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: RHQ Project
Classification: Other
Component: Core Server
Version: 4.2
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified vote
Target Milestone: ---
: ---
Assignee: John Mazzitelli
QA Contact: Mike Foley
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2012-01-06 16:57 UTC by John Mazzitelli
Modified: 2012-02-07 19:23 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2012-02-07 19:23:32 UTC


Attachments (Terms of Use)

Description John Mazzitelli 2012-01-06 16:57:07 UTC
git commit to release-3.0.1 branch: 5821f5de67f88ef148f86697bda01a06d964c89c

this is a trivial fix. the log message in MeasurementScheduleManagerBean prints the array in the useless form of "I[@1423456" but we want to see the array integers themselves. Use Arrays.toString:

- log.warn("problem creating schedules for resourceIds [" + resourceIds + "]", t);
+ log.warn("problem creating schedules for resourceIds [" + Arrays.toString(resourceIds) + "]", t);

this is a code change, nothing for QA to do

Comment 1 Mike Foley 2012-02-07 19:23:32 UTC
changing status of VERIFIED BZs for JON 2.4.2 and JON 3.0 to CLOSED/CURRENTRELEASE


Note You need to log in before you can comment on or make changes to this bug.