From 49de4eaac21a86d74cdb7a04e10d3031d727b38e Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Wed, 18 Jan 2012 09:27:11 +0100 Subject: [PATCH] DOC: Fixed wrong log samples in migration guide --- akka-docs/project/migration-guide-1.3.x-2.0.x.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/akka-docs/project/migration-guide-1.3.x-2.0.x.rst b/akka-docs/project/migration-guide-1.3.x-2.0.x.rst index 0c8d239d03..353e0c0ddb 100644 --- a/akka-docs/project/migration-guide-1.3.x-2.0.x.rst +++ b/akka-docs/project/migration-guide-1.3.x-2.0.x.rst @@ -253,11 +253,11 @@ v2.0:: import akka.event.Logging val log = Logging(context.system, this) - log.error(exception, this, message) - log.warning(this, message) - log.info(this, message) - log.debug(this, message) - log.debug(this, "Processing took {} ms", duration) + log.error(exception, message) + log.warning(message) + log.info(message) + log.debug(message) + log.debug("Processing took {} ms", duration) Documentation: