Fixed another incorrect exception logging in Orchard.Redis.

This commit is contained in:
Daniel Stolt
2015-02-09 18:01:33 +01:00
parent c328fec5ef
commit 3d5b26ebd0

View File

@@ -63,7 +63,7 @@ namespace Orchard.Redis.MessageBus {
}
catch (Exception e) {
Logger.Error("An error occured while subscribing to " + channel, e);
Logger.Error(e, "An error occured while subscribing to " + channel);
}
}