Skip to content

Commit

Permalink
Release Toolium 2.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rgonalo committed Dec 7, 2022
1 parent 41429ba commit ea50a0e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ Toolium Changelog
v2.6.3
------

*Release date: In development*
*Release date: 2022-12-09*

- Fix error in Android automatic context selection when context does not contain pages

v2.6.2
------
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.3.dev0
2.6.3
6 changes: 3 additions & 3 deletions toolium/utils/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ def map_toolium_param(param, config):

try:
mapped_value = config.get(section, property_name)
logger.info(f"Mapping Toolium config param 'param' to its configured value '{mapped_value}'")
logger.debug(f"Mapping Toolium config param 'param' to its configured value '{mapped_value}'")
except Exception:
msg = f"'{param}' param not found in Toolium config file"
logger.error(msg)
Expand Down Expand Up @@ -603,7 +603,7 @@ def get_value_from_context(param, context):
if context.storage and parts[0] in context.storage:
value = context.storage[parts[0]]
else:
logger.info(f"'{parts[0]}' key not found in context storage, searching in context")
logger.debug(f"'{parts[0]}' key not found in context storage, searching in context")
try:
value = getattr(context, parts[0])
except AttributeError:
Expand Down Expand Up @@ -639,7 +639,7 @@ def get_message_property(param, language_terms, language_key):
try:
for key in key_list:
language_terms_aux = language_terms_aux[key]
logger.info(f"Mapping language param '{param}' to its configured value '{language_terms_aux[language_key]}'")
logger.debug(f"Mapping language param '{param}' to its configured value '{language_terms_aux[language_key]}'")
except KeyError:
msg = f"Mapping chain '{param}' not found in the language properties file"
logger.error(msg)
Expand Down

0 comments on commit ea50a0e

Please sign in to comment.