You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hcatalog-commits@incubator.apache.org by tr...@apache.org on 2013/01/16 23:43:30 UTC

svn commit: r1434501 - in /incubator/hcatalog/trunk: CHANGES.txt webhcat/svr/src/main/config/webhcat-log4j.properties

Author: travis
Date: Wed Jan 16 23:43:30 2013
New Revision: 1434501

URL: http://svn.apache.org/viewvc?rev=1434501&view=rev
Log:
HCATALOG-588 Webhcat server wouldn't start as it is unable to write templeton.log

Modified:
    incubator/hcatalog/trunk/CHANGES.txt
    incubator/hcatalog/trunk/webhcat/svr/src/main/config/webhcat-log4j.properties

Modified: incubator/hcatalog/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/CHANGES.txt?rev=1434501&r1=1434500&r2=1434501&view=diff
==============================================================================
--- incubator/hcatalog/trunk/CHANGES.txt (original)
+++ incubator/hcatalog/trunk/CHANGES.txt Wed Jan 16 23:43:30 2013
@@ -174,6 +174,8 @@ Release 0.5.0 - Unreleased
   OPTIMIZATIONS
 
   BUG FIXES
+  HCAT-588 Webhcat server wouldn't start as it is unable to write templeton.log (thejas via traviscrawford)
+
   HCAT-573 Remove version number from WEBHCAT_JAR in webhcat_config.sh (thejas via traviscrawford)
 
   HCAT-592 webhcat - handle change in hive table/partition not found error (thejas via gates)

Modified: incubator/hcatalog/trunk/webhcat/svr/src/main/config/webhcat-log4j.properties
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/webhcat/svr/src/main/config/webhcat-log4j.properties?rev=1434501&r1=1434500&r2=1434501&view=diff
==============================================================================
--- incubator/hcatalog/trunk/webhcat/svr/src/main/config/webhcat-log4j.properties (original)
+++ incubator/hcatalog/trunk/webhcat/svr/src/main/config/webhcat-log4j.properties Wed Jan 16 23:43:30 2013
@@ -15,21 +15,18 @@
 # specific language governing permissions and limitations
 # under the License.
 
-#
-# templeton-log4j - configure the Templeton logging system
-
 # Define some default values that can be overridden by system properties
-templeton.root.logger = DEBUG, standard
-templeton.log.dir = .
-templeton.log.file = templeton.log
+webhcat.root.logger = DEBUG, standard
+webhcat.log.dir = .
+webhcat.log.file = webhcat.log
 
-log4j.rootLogger = ${templeton.root.logger}
+log4j.rootLogger = ${webhcat.root.logger}
 
 # Logging Threshold
 log4j.threshhold = DEBUG
 
 log4j.appender.standard  =  org.apache.log4j.DailyRollingFileAppender
-log4j.appender.standard.File = ${templeton.log.dir}/${templeton.log.file}
+log4j.appender.standard.File = ${webhcat.log.dir}/${webhcat.log.file}
 
 # Rollver at midnight
 log4j.appender.DRFA.DatePattern = .yyyy-MM-dd