Skip to content

Commit

Permalink
MqttDataTransport: removed properties printout
Browse files Browse the repository at this point in the history
  • Loading branch information
cdealti committed May 25, 2015
1 parent 2b6ca66 commit b41ee08
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,6 @@ public void unsetCryptoService(CryptoService cryptoService) {
protected void activate(ComponentContext componentContext, Map<String, Object> properties) {
s_logger.info("Activating...");

Iterator<String> kkeys = properties.keySet().iterator();
while (kkeys.hasNext()) {
String key = kkeys.next();
s_logger.info("{}: {}", key, properties.get(key));
}

// We need to catch the configuration exception and activate anyway.
// Otherwise the ConfigurationService will not be able to track us.
HashMap<String, Object> decryptedPropertiesMap = new HashMap<String, Object>();
Expand Down Expand Up @@ -218,12 +212,6 @@ protected void deactivate(ComponentContext componentContext) {
public void updated(Map<String, Object> properties) {
s_logger.info("Updating...");

Iterator<String> kkeys = properties.keySet().iterator();
while (kkeys.hasNext()) {
String key = kkeys.next();
s_logger.info("{}: {}", key, properties.get(key));
}

m_properties.clear();

HashMap<String, Object> decryptedPropertiesMap = new HashMap<String, Object>();
Expand Down

0 comments on commit b41ee08

Please sign in to comment.