From 2fbbb9bd95cd6803afaf66e0cffb18d9189f731b Mon Sep 17 00:00:00 2001 From: Yang Gao Date: Fri, 13 Mar 2015 16:10:14 -0700 Subject: [PATCH] copy and paste does not work --- src/cpp/client/secure_credentials.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cpp/client/secure_credentials.cc b/src/cpp/client/secure_credentials.cc index c0dfaef3a53..f0355031661 100644 --- a/src/cpp/client/secure_credentials.cc +++ b/src/cpp/client/secure_credentials.cc @@ -100,7 +100,8 @@ std::unique_ptr ServiceAccountCredentials( std::chrono::seconds token_lifetime) { if (token_lifetime.count() <= 0) { gpr_log(GPR_ERROR, - "Trying to create JWTCredentials with non-positive lifetime"); + "Trying to create ServiceAccountCredentials " + "with non-positive lifetime"); return WrapCredentials(nullptr); } gpr_timespec lifetime = gpr_time_from_seconds(token_lifetime.count());