Skip to content

Commit 3ad57bc

Browse files
committed
remove debug prints
1 parent 437acff commit 3ad57bc

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

core/src/main/python/create.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,10 @@ def __process_args(args):
8282
"""
8383
cla_util = CommandLineArgUtil(_program_name, __required_arguments, __optional_arguments)
8484
required_arg_map, optional_arg_map = cla_util.process_args(args, True)
85-
print 'PASSED 1'
8685
__verify_required_args_present(required_arg_map)
8786
__process_java_home_arg(optional_arg_map)
8887
__process_domain_location_args(optional_arg_map)
8988
__process_model_args(optional_arg_map)
90-
print 'PASSED 2'
9189

9290
#
9391
# Verify that the domain type is a known type and load its typedef.

core/src/main/python/wlsdeploy/tool/create/domain_creator.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -712,9 +712,6 @@ def __configure_fmw_infra_database(self):
712712

713713
# Need to set for the connection proeprty for each datasource
714714

715-
print 'conn ' + str(rcu_database)
716-
print 'prefix ' + str(rcu_prefix)
717-
print 'pawws ' + str(rcu_schema_pwd)
718715
fmw_database = self.wls_helper.get_jdbc_url_from_rcu_connect_string(rcu_database)
719716

720717
location = LocationContext()
@@ -782,7 +779,6 @@ def __configure_fmw_infra_database(self):
782779
self.__set_atp_connection_property(location, DRIVER_PARAMS_NET_SERVER_DN_MATCH_PROPERTY, 'true')
783780
self.__set_atp_connection_property(location, DRIVER_PARAMS_NET_TNS_ADMIN, tns_admin)
784781
self.__set_atp_connection_property(location, DRIVER_PARAMS_NET_FAN_ENABLED, 'false')
785-
print 'UPDATED ALL PROPERTIES '
786782

787783
except VariableException, ex:
788784
self.logger.severe('WLSDPLY-20004', _program_name, ex.getLocalizedMessage(), error=ex,

core/src/main/python/wlsdeploy/util/cla_utils.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ def process_args(self, args, for_domain_create=False):
125125
idx = 1
126126
while idx < args_len:
127127
key = args[idx]
128-
print "KEY Is " + key
129128
self._logger.fine('WLSDPLY-01600', key, class_name=self._class_name, method_name=method_name)
130129
if self.is_help_key(key):
131130
ex = exception_helper.create_cla_exception('Dummy Key')
@@ -372,7 +371,6 @@ def process_args(self, args, for_domain_create=False):
372371
self._logger.throwing(ex, class_name=self._class_name, method_name=method_name)
373372
raise ex
374373
elif self.is_rcu_properties_file_key(key):
375-
print 'FOUND IT'
376374
idx += 1
377375
if idx < args_len:
378376
full_path = self._validate_rcu_properties_file_arg(args[idx])
@@ -972,7 +970,6 @@ def is_variable_properties_file_key(self, key):
972970
return self.VARIABLE_PROPERTIES_FILE_SWITCH == key
973971

974972
def is_rcu_properties_file_key(self, key):
975-
print 'CHECKING NEW PROPS ' + key
976973
return self.RCU_PROPERTIES_FILE_SWITCH == key
977974

978975
def _validate_variable_properties_file_arg(self, value):

0 commit comments

Comments
 (0)