From 7391d6eb0740638968b20b4df1b94a4d63441291 Mon Sep 17 00:00:00 2001 From: Julian Borrey Date: Thu, 23 Jun 2016 08:04:37 -0700 Subject: [PATCH] Remove API key from default log (#299) --- lib/bugsnag/notification.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bugsnag/notification.rb b/lib/bugsnag/notification.rb index 4fe899a98..2369674b4 100644 --- a/lib/bugsnag/notification.rb +++ b/lib/bugsnag/notification.rb @@ -219,7 +219,7 @@ def deliver # Build the endpoint url endpoint = (@configuration.use_ssl ? "https://" : "http://") + @configuration.endpoint - Bugsnag.log("Notifying #{endpoint} of #{@exceptions.last.class} from api_key #{api_key}") + Bugsnag.log("Notifying #{endpoint} of #{@exceptions.last.class}") # Deliver the payload self.class.deliver_exception_payload(endpoint, build_exception_payload, @configuration, @delivery_method)