Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion testgen/generators/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def readFile(self, filename, version="", filetype="txt"):
with open(path, "r", encoding="utf-8") as testdata:
return json.load(testdata) if filetype == "json" else testdata.read()
except BaseException as err:
Comment thread
sven-oly marked this conversation as resolved.
Outdated
logging.warning("** READ: Error = %s", err)
logging.warning("** readFile: %s", err)
return None

def computeMaxDigitsForCount(self, count):
Expand Down
2 changes: 1 addition & 1 deletion testgen/generators/datetime_fmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def process_test_data(self):
]

if self.icu_version not in icu_nvm_versions:
logging.error('Generating datetime data not configured for icu version %s', self.icu_version)
logging.warning('Generating datetime data not configured for icu version %s', self.icu_version)
return False

# Set up Node version and call the generator
Expand Down
2 changes: 1 addition & 1 deletion testgen/generators/list_fmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def process_test_data(self):
]

if self.icu_version not in icu_nvm_versions:
logging.error('Generating list_fmt data not configured for icu version %s', self.icu_version)
logging.warning('Generating list_fmt data not configured for icu version %s', self.icu_version)
return False

# Set up Node version and call the generator
Expand Down
2 changes: 1 addition & 1 deletion testgen/generators/relativedatetime_fmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def process_test_data(self):
]

if self.icu_version not in icu_nvm_versions:
logging.error('Generating relative date/time data not configured for icu version %s', self.icu_version)
logging.warning('Generating relative date/time data not configured for icu version %s', self.icu_version)
return False

# Set up Node version and call the generator
Expand Down
Loading