From 4ef91667692101cec0e82bfb9f0d3c14cd915ef0 Mon Sep 17 00:00:00 2001 From: Jun Rao Date: Wed, 24 Oct 2012 23:00:25 +0000 Subject: [PATCH] trivial fix to add the missing Logging class git-svn-id: https://svn.apache.org/repos/asf/incubator/kafka/branches/0.8@1401909 13f79535-47bb-0310-9956-ffa450edef68 --- core/src/main/scala/kafka/utils/CommandLineUtils.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/kafka/utils/CommandLineUtils.scala b/core/src/main/scala/kafka/utils/CommandLineUtils.scala index 5516afa50de..21c5d4adfb5 100644 --- a/core/src/main/scala/kafka/utils/CommandLineUtils.scala +++ b/core/src/main/scala/kafka/utils/CommandLineUtils.scala @@ -5,7 +5,7 @@ import joptsimple.{OptionSpec, OptionSet, OptionParser} /** * Helper functions for dealing with command line utilities */ -object CommandLineUtils { +object CommandLineUtils extends Logging { def checkRequiredArgs(parser: OptionParser, options: OptionSet, required: OptionSpec[_]*) { for(arg <- required) {