diff --git a/README.md b/README.md index c087413a5..336234248 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ Perform a database restore. This command is generall run manually, but there ar The backup set to be restored. `latest` will restore the latest backup, otherwise provide the name of the backup to restore. ``` required: n -default: default +default: latest example: --set=20150131-153358F_20150131-153401I ``` diff --git a/bin/pg_backrest.pl b/bin/pg_backrest.pl index a786c6c5d..33f9b6fd3 100755 --- a/bin/pg_backrest.pl +++ b/bin/pg_backrest.pl @@ -83,7 +83,7 @@ sub safe_exit { my $iExitCode = shift; - &log(ERROR, "safe exit called, terminating threads"); + &log(DEBUG, "safe exit called, terminating threads"); my $iTotal = threadGroupDestroy(); remoteDestroy(); diff --git a/test/test.pl b/test/test.pl index 08b542b3b..d1ab7db00 100755 --- a/test/test.pl +++ b/test/test.pl @@ -7,8 +7,8 @@ # Perl includes #################################################################################################################################### use strict; -use warnings; -use Carp; +use warnings FATAL => qw(all); +use Carp qw(confess); use File::Basename; use Getopt::Long;