diff --git a/lib/IdPAccountManager/AuthenticationToken.pm b/lib/IdPAccountManager/AuthenticationToken.pm
index 59b926b193e87fde3356153058bcf7ec8fb9ce54..31b6e00a68f2c526ed5331c307ac907d41d4e0ca 100644
--- a/lib/IdPAccountManager/AuthenticationToken.pm
+++ b/lib/IdPAccountManager/AuthenticationToken.pm
@@ -10,7 +10,6 @@ use warnings;
 use IdPAccountManager::Data::Authenticationtoken;
 use IdPAccountManager::Data::Authenticationtoken::Manager;
 
-use IdPAccountManager::Tools;
 use Conf;
 
 use Digest::MD5;
@@ -83,8 +82,6 @@ sub save {
     }
 
     unless ($self->{'persistent'}->save()) {
-        IdPAccountManager::Tools::do_log('error',
-            "Failed to save Authenticationtoken in DB");
         return undef;
     }
 }
@@ -94,8 +91,6 @@ sub delete {
     my $self = shift;
 
     unless ($self->{'persistent'}->delete()) {
-        IdPAccountManager::Tools::do_log('error',
-            "Failed to delete a Authenticationtoken in DB");
         return undef;
     }
 }
diff --git a/lib/IdPAccountManager/TestAccount.pm b/lib/IdPAccountManager/TestAccount.pm
index 05a113d73b88fd7150232862f598c985f73c6f43..e9a67f2980104d1e0b5ba557b0f6578e231ab502 100644
--- a/lib/IdPAccountManager/TestAccount.pm
+++ b/lib/IdPAccountManager/TestAccount.pm
@@ -70,8 +70,6 @@ sub save {
     }
 
     unless ($self->{'persistent'}->save()) {
-        IdPAccountManager::Tools::do_log('error',
-            "Failed to save Test Account in DB");
         return undef;
     }
 }
@@ -81,8 +79,6 @@ sub delete {
     my $self = shift;
 
     unless ($self->{'persistent'}->delete()) {
-        IdPAccountManager::Tools::do_log('error',
-            "Failed to delete a test account in DB");
         return undef;
     }
 }
@@ -124,8 +120,6 @@ sub create_test_accounts_for_sp {
     my @test_accounts;
 
     unless ($args{'sp_entityid'}) {
-        IdPAccountManager::Tools::do_log('error',
-            "Failed to create test account");
         return undef;
     }
 
@@ -135,14 +129,10 @@ sub create_test_accounts_for_sp {
             sp_entityid     => $args{'sp_entityid'}
         );
         unless (defined $test_account) {
-            IdPAccountManager::Tools::do_log('error',
-                "Failed to create test account");
             return undef;
         }
 
         unless ($test_account->save()) {
-            IdPAccountManager::Tools::do_log('error',
-                "Failed to create test account");
             return undef;
         }