Ok, the appender FILE configures the log file location among other things. So you should find an idea.log file in your $SYSTEM_DIR$/log/ directory.
On 30/01/06, Frank <[EMAIL PROTECTED]> wrote: > > Yes, here is the contents > > > <?xml version='1.0' encoding='ISO-8859-1' ?> > <!DOCTYPE log4j:configuration SYSTEM "file:./log4j.dtd"> > > <log4j:configuration> > <appender name="CONSOLE-WARN" class="org.apache.log4j.ConsoleAppender"> > <param name="target" value="System.err"/> > <layout class="org.apache.log4j.PatternLayout"> > <param name="ConversionPattern" value="[%7r] %6p - %30.30c - %m > \n"/> > </layout> > <filter class="org.apache.log4j.varia.LevelRangeFilter"> > <param name="LevelMin" value="WARN"/> > </filter> > </appender> > > <appender name="CONSOLE-DEBUG" class="org.apache.log4j.ConsoleAppender > "> > <layout class="org.apache.log4j.PatternLayout"> > <param name="ConversionPattern" value="[%7r] %6p - %30.30c - %m > \n"/> > </layout> > <filter class="org.apache.log4j.varia.LevelRangeFilter"> > <param name="LevelMin" value="DEBUG"/> > <param name="LevelMax" value="DEBUG"/> > </filter> > </appender> > > <appender name="CONSOLE-ALL" class="org.apache.log4j.ConsoleAppender"> > <layout class="org.apache.log4j.PatternLayout"> > <param name="ConversionPattern" value="[%7r] %6p - %30.30c - %m > \n"/> > </layout> > </appender> > > <appender name="DIALOG" class="com.intellij.diagnostic.DialogAppender"> > </appender> > > <appender name="FILE" class="org.apache.log4j.RollingFileAppender"> > <param name="MaxFileSize" value="1Mb"/> > <param name="MaxBackupIndex" value="3"/> > <param name="file" value="$SYSTEM_DIR$/log/idea.log"/> > <layout class="org.apache.log4j.PatternLayout"> > <param name="ConversionPattern" value="%d [%7r] %6p - %30.30c - %m > \n"/> > </layout> > </appender> > > <root> > <priority value="INFO"/> > <appender-ref ref="DIALOG"/> > <appender-ref ref="CONSOLE-WARN"/> > <appender-ref ref="FILE"/> > </root> > </log4j:configuration> > > At 10:21 AM 1/30/2006, you wrote: > >Do you have a log4.xml file in your $IDEA_HOME/bin directory ? > > > >On 30/01/06, Frank <[EMAIL PROTECTED]> wrote: > > > > > > I just tried installing on my windows amchine and it works fine. > > > It does not work on my Mac. > > > I am thinking that maybe there is a permission problem. > > > I have not been able to find the idea.log file. > > > > > > Thanks > > > > > > Frank > > > > > > At 06:43 PM 1/29/2006, you wrote: > > > >You should have an idea.log file in you system dir. This is usually > > > >in $USER_HOME/.Intellij/system/log > > > >I think this is the same on every system. You can see the location > > > >of you log file in the log4j configuration file log4.xml in you bin > > > directory. > > > > > > > >Frank Rocco wrote: > > > >>I do not get any error messages. > > > >>Not sure where to look on a Mac for the log. > > > >> > > > >>Thanks > > > >> > > > >>Frank > > > >>On Jan 29, 2006, at 2:47 PM, Hugo Palma wrote: > > > >> > > > >>>No palette and no module type ? > > > >>> > > > >>>Is there any exception log ? > > > >>> > > > >>>Frank Rocco wrote: > > > >>>>I downloaded 5.0.2 and I still do not see a Tapestry option. > > > >>>>It says the plugin is installed. > > > >>>> > > > >>>>Frank > > > >>>>On Jan 29, 2006, at 2:25 PM, Hugo Palma wrote: > > > >>>> > > > >>>>>It won't work in Idea 4.5. The plugin only works in the 5.x > > > >>>>>versions of Idea. It's certified(tested by me) since build 3542 > of > > > Idea(5.0.2). > > > >>>>> > > > >>>>>As the development of this plugin started very recently i had to > > > >>>>>start with the 5.x version. It would actually work if the API > > > >>>>>for 5.x and 4.5 were compatible, but they aren't. So no Tapidea > > > >>>>>for pre 5.x users. > > > >>>>>Sorry :o( > > > >>>>> > > > >>>>> > > > >>>>> > > > >>>>>Frank Rocco wrote: > > > >>>>>>How do I install in Idea 4.5? > > > >>>>>> > > > >>>>>>I dropped the Tapidea directory into the Idea Plugin directory. > > > >>>>>>The says it is installed, but when I try to create a new > > > >>>>>>module, I do not see tapestry as an option. > > > >>>>>> > > > >>>>>>I am running idea on a Mac OSX 10.4 > > > >>>>>> > > > >>>>>>Thanks > > > >>>>>> > > > >>>>>>Frank > > > >>>>>> > > > >>>>>> > > > > > > > >>>>>>--------------------------------------------------------------------- > > > >>>>>>To unsubscribe, e-mail: > [EMAIL PROTECTED] > > > >>>>>>For additional commands, e-mail: > > > [EMAIL PROTECTED] > > > >>>>>> > > > >>>>> > > > > >>>>>--------------------------------------------------------------------- > > > >>>>>To unsubscribe, e-mail: > [EMAIL PROTECTED] > > > >>>>>For additional commands, e-mail: > > > [EMAIL PROTECTED] > > > >>>> > > > >>>> > > > > >>>>--------------------------------------------------------------------- > > > >>>>To unsubscribe, e-mail: > [EMAIL PROTECTED] > > > >>>>For additional commands, e-mail: > [EMAIL PROTECTED] > > > >>>> > > > >>> > > > > >>>--------------------------------------------------------------------- > > > >>>To unsubscribe, e-mail: > [EMAIL PROTECTED] > > > >>>For additional commands, e-mail: > [EMAIL PROTECTED] > > > >> > > > >> > > > > >>--------------------------------------------------------------------- > > > >>To unsubscribe, e-mail: [EMAIL PROTECTED] > > > >>For additional commands, e-mail: > [EMAIL PROTECTED] > > > >> > > > > > > > >--------------------------------------------------------------------- > > > >To unsubscribe, e-mail: [EMAIL PROTECTED] > > > >For additional commands, e-mail: > [EMAIL PROTECTED] > > > > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
