Repository: logging-log4j2 Updated Branches: refs/heads/master 5b244e622 -> 91567f3cd
Javadoc: Use the active voice. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/91567f3c Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/91567f3c Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/91567f3c Branch: refs/heads/master Commit: 91567f3cd233e35fa4e2199a11b1e076388dec6f Parents: 5b244e6 Author: Gary Gregory <[email protected]> Authored: Sun Apr 19 20:59:51 2015 -0700 Committer: Gary Gregory <[email protected]> Committed: Sun Apr 19 20:59:51 2015 -0700 ---------------------------------------------------------------------- .../logging/log4j/core/LoggerContext.java | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/91567f3c/log4j-core/src/main/java/org/apache/logging/log4j/core/LoggerContext.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/LoggerContext.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/LoggerContext.java index d0e485f..fc15120 100644 --- a/log4j-core/src/main/java/org/apache/logging/log4j/core/LoggerContext.java +++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/LoggerContext.java @@ -149,7 +149,7 @@ public class LoggerContext extends AbstractLifeCycle implements org.apache.loggi } /** - * Start with a specific configuration. + * Starts with a specific configuration. * @param config The new Configuration. */ public void start(final Configuration config) { @@ -241,7 +241,7 @@ public class LoggerContext extends AbstractLifeCycle implements org.apache.loggi } /** - * Set the external context. + * Sets the external context. * @param context The external context. */ public void setExternalContext(final Object context) { @@ -258,7 +258,7 @@ public class LoggerContext extends AbstractLifeCycle implements org.apache.loggi } /** - * Obtain a Logger from the Context. + * Obtains a Logger from the Context. * @param name The name of the Logger to return. * @return The Logger. */ @@ -281,7 +281,7 @@ public class LoggerContext extends AbstractLifeCycle implements org.apache.loggi } /** - * Obtain a Logger from the Context. + * Obtains a Logger from the Context. * @param name The name of the Logger to return. * @param messageFactory The message factory is used only when creating a * logger, subsequent use does not change the logger but will log @@ -302,7 +302,7 @@ public class LoggerContext extends AbstractLifeCycle implements org.apache.loggi } /** - * Determine if the specified Logger exists. + * Determines if the specified Logger exists. * @param name The Logger name to search for. * @return True if the Logger exists, false otherwise. */ @@ -322,7 +322,7 @@ public class LoggerContext extends AbstractLifeCycle implements org.apache.loggi } /** - * Add a Filter to the Configuration. Filters that are added through the API will be lost + * Adds a Filter to the Configuration. Filters that are added through the API will be lost * when a reconfigure occurs. * @param filter The Filter to add. */ @@ -339,7 +339,7 @@ public class LoggerContext extends AbstractLifeCycle implements org.apache.loggi } /** - * Set the Configuration to be used. + * Sets the Configuration to be used. * @param config The new Configuration. * @return The previous Configuration. */ @@ -443,14 +443,14 @@ public class LoggerContext extends AbstractLifeCycle implements org.apache.loggi } /** - * Cause all Loggers to be updated against the current Configuration. + * Causes all Loggers to be updated against the current Configuration. */ public void updateLoggers() { updateLoggers(this.config); } /** - * Cause all Logger to be updated against the specified Configuration. + * Causes all Logger to be updated against the specified Configuration. * @param config The Configuration. */ public void updateLoggers(final Configuration config) { @@ -460,7 +460,7 @@ public class LoggerContext extends AbstractLifeCycle implements org.apache.loggi } /** - * Cause a reconfiguration to take place when the underlying configuration + * Causes a reconfiguration to take place when the underlying configuration * file changes. * * @param reconfigurable The Configuration that can be reconfigured.
