Skip to content

Commit

Permalink
Demote missing annotation warning to info in TimeSeries.__init__()
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Aug 26, 2020
1 parent 74bb3de commit bf83f14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ixmp/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,9 +446,9 @@ def __init__(self, mp, model, scenario, version=None, annotation=None,
elif version and not (version == 'new' or isinstance(version, int)):
raise ValueError(f'version={repr(version)}')
elif version == 'new' and annotation is None:
log.warning(
f'Missing annotation for new {self.__class__.__name__}'
f' {model}/{scenario}'
log.info(
f"Missing annotation for new {self.__class__.__name__}"
f" {model}/{scenario}"
)
annotation = ''

Expand Down

0 comments on commit bf83f14

Please sign in to comment.