Mention new verbosity level to NEWS (#484).
This commit is contained in:
parent
c0aaba6891
commit
b222f6a60b
2 changed files with 4 additions and 1 deletions
2
NEWS
2
NEWS
|
@ -1,4 +1,6 @@
|
||||||
1.7.14.dev0
|
1.7.14.dev0
|
||||||
|
* #484: Add a new verbosity level (-2) to disable output entirely (for console, syslog, log file,
|
||||||
|
or monitoring), so not even errors are shown.
|
||||||
* #688: Tweak archive check probing logic to use the newest timestamp found when multiple exist.
|
* #688: Tweak archive check probing logic to use the newest timestamp found when multiple exist.
|
||||||
* #659: Add Borg 2 date-based matching flags to various actions for archive selection.
|
* #659: Add Borg 2 date-based matching flags to various actions for archive selection.
|
||||||
|
|
||||||
|
|
|
@ -242,7 +242,8 @@ def test_run_configuration_retries_hard_error():
|
||||||
).and_return([flexmock()])
|
).and_return([flexmock()])
|
||||||
error_logs = [flexmock()]
|
error_logs = [flexmock()]
|
||||||
flexmock(module).should_receive('log_error_records').with_args(
|
flexmock(module).should_receive('log_error_records').with_args(
|
||||||
'foo: Error running actions for repository', OSError,
|
'foo: Error running actions for repository',
|
||||||
|
OSError,
|
||||||
).and_return(error_logs)
|
).and_return(error_logs)
|
||||||
config = {'location': {'repositories': [{'path': 'foo'}]}, 'storage': {'retries': 1}}
|
config = {'location': {'repositories': [{'path': 'foo'}]}, 'storage': {'retries': 1}}
|
||||||
arguments = {'global': flexmock(monitoring_verbosity=1, dry_run=False), 'create': flexmock()}
|
arguments = {'global': flexmock(monitoring_verbosity=1, dry_run=False), 'create': flexmock()}
|
||||||
|
|
Loading…
Reference in a new issue