summaryrefslogtreecommitdiffstats
path: root/controlloop/common/database/src
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2019-04-29 13:07:09 -0400
committerPamela Dragosh <pdragosh@research.att.com>2019-04-29 13:07:14 -0400
commit71b3a6b68a1a27839fde863b46c74587131be313 (patch)
tree4ca8d00285dd5a0f142d1ac7d7e316d3a959765e /controlloop/common/database/src
parent74f5aea3da13f47573bff055397c5bbe5e1db55f (diff)
Fix sonar bug and upgrade parent
* Fix simple sonar bug for logging errors * Private constructors to hide implicit. * Not enough arguments for debug statement * Upgrade to policy/parent released version Issue-ID: POLICY-1700 Change-Id: Id8040c2aa0abdbe4946db60f97cb279974817447 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'controlloop/common/database/src')
-rw-r--r--controlloop/common/database/src/main/java/org/onap/policy/database/operationshistory/GetOperationOutcomePip.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controlloop/common/database/src/main/java/org/onap/policy/database/operationshistory/GetOperationOutcomePip.java b/controlloop/common/database/src/main/java/org/onap/policy/database/operationshistory/GetOperationOutcomePip.java
index 01b0709b2..20c8f028a 100644
--- a/controlloop/common/database/src/main/java/org/onap/policy/database/operationshistory/GetOperationOutcomePip.java
+++ b/controlloop/common/database/src/main/java/org/onap/policy/database/operationshistory/GetOperationOutcomePip.java
@@ -124,7 +124,7 @@ public class GetOperationOutcomePip extends StdOnapPip {
}
private String doDatabaseQuery(String clname, String target) {
- logger.info("Querying operations history for {} {} {} {} {}",
+ logger.info("Querying operations history for {} {}",
clname, target);
//
// Do the query
4 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322