diff options
author | mojahidi <mojahidul.islam@amdocs.com> | 2018-05-15 12:11:15 +0530 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2018-05-15 08:36:01 +0000 |
commit | df247b4913b82af106e7e293d3f56dd427fb3cdd (patch) | |
tree | 83963d18269e3add156c401d5154de5c020308a9 /openecomp-be/lib/openecomp-core-lib | |
parent | 3582690ce5ca69b6d12c5568314c1f9e4ecdfbf5 (diff) |
Handle logger.debug(, exception)
Removed logger.debug(, exception) from code
Change-Id: Iec304267d0f113f7a7efa302bc36a7073995ad3d
Issue-ID: SDC-836
Signed-off-by: mojahidi <mojahidul.islam@amdocs.com>
Diffstat (limited to 'openecomp-be/lib/openecomp-core-lib')
-rw-r--r-- | openecomp-be/lib/openecomp-core-lib/openecomp-nosqldb-lib/openecomp-nosqldb-core/src/main/java/org/openecomp/core/nosqldb/impl/cassandra/CassandraNoSqlDbImpl.java | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/openecomp-be/lib/openecomp-core-lib/openecomp-nosqldb-lib/openecomp-nosqldb-core/src/main/java/org/openecomp/core/nosqldb/impl/cassandra/CassandraNoSqlDbImpl.java b/openecomp-be/lib/openecomp-core-lib/openecomp-nosqldb-lib/openecomp-nosqldb-core/src/main/java/org/openecomp/core/nosqldb/impl/cassandra/CassandraNoSqlDbImpl.java index 2172e1bc2f..71bc146bac 100644 --- a/openecomp-be/lib/openecomp-core-lib/openecomp-nosqldb-lib/openecomp-nosqldb-core/src/main/java/org/openecomp/core/nosqldb/impl/cassandra/CassandraNoSqlDbImpl.java +++ b/openecomp-be/lib/openecomp-core-lib/openecomp-nosqldb-lib/openecomp-nosqldb-core/src/main/java/org/openecomp/core/nosqldb/impl/cassandra/CassandraNoSqlDbImpl.java @@ -1,22 +1,18 @@ -/*- - * ============LICENSE_START======================================================= - * SDC - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. - * ================================================================================ +/* + * Copyright © 2018 European Support Limited + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * ============LICENSE_END========================================================= - */ +*/ package org.openecomp.core.nosqldb.impl.cassandra; @@ -44,7 +40,7 @@ class CassandraNoSqlDbImpl implements NoSqlDb { private final String keySpace; private final MappingManager mappingManager; - private final Logger log = (Logger) LoggerFactory.getLogger(this.getClass().getName()); + private final Logger log = LoggerFactory.getLogger(this.getClass().getName()); public CassandraNoSqlDbImpl(Session session) { @@ -71,7 +67,7 @@ class CassandraNoSqlDbImpl implements NoSqlDb { .append(") values (") .append(CommonMethods.duplicateStringWithDelimiter("?", ',', values.length)) .append(")"); - System.out.println(sb.toString()); + log.info(sb.toString()); PreparedStatement prepared = session.prepare(sb.toString()); BoundStatement bound; @@ -117,7 +113,7 @@ class CassandraNoSqlDbImpl implements NoSqlDb { .collect(Collectors.toSet()); return versions.stream().collect(Collectors.joining(",")); } catch (Exception e){ - log.debug("",e); + log.error("Failed to retrieve version", e); return "Failed to retrieve version"; } } |