@@ -48,19 +48,19 @@ protected Logger getLogger() {
4848 }
4949
5050 /**
51- * Performs a log using the var args <code>objs</code> as an array that can be presented to the logger.
51+ * Performs a log using the format arguments <code>objs</code> as an array that can be presented to the logger.
5252 *
5353 * @param level the level of the log.
5454 * @param throwable the throwable to log with <code>str</code>.
5555 * @param str the format string.
56- * @param objs a var arg thats converted to an object array for logging.
56+ * @param objs a format arguments that are converted to an object array for logging.
5757 */
5858 protected void log (final Level level , final Throwable throwable , final String str , final Object ... objs ) {
5959 LoggerUtil .log (getLogger (), level , throwable , str , objs );
6060 }
6161
6262 /**
63- * Performs a log using the var args <code>objs</code> as an array that can be presented to the logger.
63+ * Performs a log using the format arguments <code>objs</code> as an array that can be presented to the logger.
6464 *
6565 * @param level the level of the log.
6666 * @param throwable the throwable to log with <code>str</code>.
@@ -71,11 +71,11 @@ protected void log(final Level level, final Throwable throwable, final String st
7171 }
7272
7373 /**
74- * Performs a log using the var args <code>objs</code> as an array that can be presented to the logger.
74+ * Performs a log using the format arguments <code>objs</code> as an array that can be presented to the logger.
7575 *
7676 * @param level the level of the log.
7777 * @param str the format string.
78- * @param objs a var arg thats converted to an object array for logging.
78+ * @param objs a format arguments that are converted to an object array for logging.
7979 */
8080 protected void log (final Level level , final String str , final Object ... objs ) {
8181 LoggerUtil .log (getLogger (), level , str , objs );
@@ -97,32 +97,32 @@ protected <V> V logAndReturn(final Level level, final String str, final V retVal
9797 }
9898
9999 /**
100- * Log and return the value thats found at <code>index</code> in the var arg <code>objs</code>. The "i" in LogFi stands for
100+ * Log and return the value that are found at <code>index</code> in the format arguments <code>objs</code>. The "i" in LogFi stands for
101101 * integer position. Without a unique name on this method, there is conflict in calling the logAndReturn() counterpart.
102102 *
103103 * @param <V> the type to return.
104104 *
105105 * @param level the level of the log.
106106 * @param str the format string.
107107 * @param index the index into <code>objs</code> that is the return value.
108- * @param objs a var arg thats converted to an object array for logging.
108+ * @param objs a format arguments that are converted to an object array for logging.
109109 *
110- * @return the value found at index <code>index</code> in the var args <code>objs</code>.
110+ * @return the value found at index <code>index</code> in the format arguments <code>objs</code>.
111111 */
112112 protected <V > V logAndReturnByIndex (final Level level , final String str , final int index , final Object ... objs ) {
113113 return LoggerUtil .logAndReturnByIndex (getLogger (), level , str , index , objs );
114114 }
115115
116116 /**
117- * Log and return the value at found as the 0th index in the var arg <code>objs</code>.
117+ * Log and return the value at found as the 0th index in the format arguments <code>objs</code>.
118118 *
119119 * @param <V> the type to return.
120120 *
121121 * @param level the level of the log.
122122 * @param str the format string.
123- * @param objs a var arg thats converted to an object array for logging.
123+ * @param objs a format arguments that are converted to an object array for logging.
124124 *
125- * @return the value found at 0th index in the var args <code>objs</code>.
125+ * @return the value found at 0th index in the format arguments <code>objs</code>.
126126 */
127127 protected <V > V logAndReturn (final Level level , final String str , final Object ... objs ) {
128128 return LoggerUtil .logAndReturn (getLogger (), level , str , objs );
@@ -132,7 +132,7 @@ protected <V> V logAndReturn(final Level level, final String str, final Object..
132132 * Convenience method to log at INFO level.
133133 *
134134 * @param str the format string
135- * @param objs a var arg converted to an object array for logging
135+ * @param objs a format arguments converted to an object array for logging
136136 */
137137 protected void logInfo (final String str , final Object ... objs ) {
138138 log (Level .INFO , str , objs );
@@ -142,7 +142,7 @@ protected void logInfo(final String str, final Object... objs) {
142142 * Convenience method to log at WARNING level.
143143 *
144144 * @param str the format string
145- * @param objs a var arg converted to an object array for logging
145+ * @param objs a format arguments converted to an object array for logging
146146 */
147147 protected void logWarning (final String str , final Object ... objs ) {
148148 log (Level .WARNING , str , objs );
@@ -153,7 +153,7 @@ protected void logWarning(final String str, final Object... objs) {
153153 *
154154 * @param throwable the throwable to log
155155 * @param str the format string
156- * @param objs a var arg converted to an object array for logging
156+ * @param objs a format arguments converted to an object array for logging
157157 */
158158 protected void logWarning (final Throwable throwable , final String str , final Object ... objs ) {
159159 log (Level .WARNING , throwable , str , objs );
@@ -163,7 +163,7 @@ protected void logWarning(final Throwable throwable, final String str, final Obj
163163 * Convenience method to log at SEVERE level.
164164 *
165165 * @param str the format string
166- * @param objs a var arg converted to an object array for logging
166+ * @param objs a format arguments converted to an object array for logging
167167 */
168168 protected void logError (final String str , final Object ... objs ) {
169169 log (Level .SEVERE , str , objs );
@@ -174,7 +174,7 @@ protected void logError(final String str, final Object... objs) {
174174 *
175175 * @param throwable the throwable to log
176176 * @param str the format string
177- * @param objs a var arg converted to an object array for logging
177+ * @param objs a format arguments converted to an object array for logging
178178 */
179179 protected void logError (final Throwable throwable , final String str , final Object ... objs ) {
180180 log (Level .SEVERE , throwable , str , objs );
0 commit comments