• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
JRebel & ERXLog4JConfiguration
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

JRebel & ERXLog4JConfiguration


  • Subject: JRebel & ERXLog4JConfiguration
  • From: David Avendasora <email@hidden>
  • Date: Wed, 13 Oct 2010 07:24:53 -0400

Hi all,

This is just a heads up for all you D2Wers using JRebel. JRebel chokes (java.lang.IllegalAccessException) on the protected enums in the ERXLog4JConfiguration class, so you can't use the awesome new Log4J configuration page. :-(

 If you change them to public then the Log4J configuration page works just fine.

After discussions with Q on the subject I've contacted email@hidden to report this bug.

In the meantime below is a patch you can apply to ERXExtensions.

Dave


Index: Sources/er/extensions/logging/ERXLog4JConfiguration.java
===================================================================
--- Sources/er/extensions/logging/ERXLog4JConfiguration.java	(revision 11514)
+++ Sources/er/extensions/logging/ERXLog4JConfiguration.java	(working copy)
@@ -39,7 +39,7 @@
     /**
      * A representation of the various Logger levels.
      */
-    protected enum LoggerLevel {
+    private enum LoggerLevel {
         ALL(Level.ALL, "All"),
         TRACE(Level.TRACE, "Trace"),
         DEBUG(Level.DEBUG, "Debug"),
@@ -76,7 +76,7 @@
     /**
      * A representation of the available page sections/views.
      */
-    protected enum PageSection {
+    private enum PageSection {
         LOGGERS("Loggers", "Loggers"),
         REPOSITORY("Repository", "Repository"),
         APPENDERS("Appenders", "Appenders"),

 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: JRebel & ERXLog4JConfiguration
      • From: David Avendasora <email@hidden>
  • Prev by Date: Re: D2W & Strategy Design Pattern
  • Next by Date: Re: JRebel & ERXLog4JConfiguration
  • Previous by thread: Re: D2W & Strategy Design Pattern
  • Next by thread: Re: JRebel & ERXLog4JConfiguration
  • Index(es):
    • Date
    • Thread