I use GWT 2.6
Am Donnerstag, 20. Februar 2014 23:19:36 UTC+1 schrieb confile: > > I made a demo gwt project to show this problem: > https://github.com/confile/gwtlogtest > > > *When I compile with style obfuscated I get on the client: * > > (-:-) 2014-02-20 23:09:54,529 [FATAL] This is what an exception might look > like java.lang.RuntimeException: 2 + 2 = 5 at > Unknown.ui(StackTraceCreator.java:180) at > Unknown.Zf(StackTraceCreator.java:518) at Unknown.Yf(Throwable.java:56) at > Unknown.kh(Exception.java:29) at Unknown.mh(RuntimeException.java:29) at > Unknown.PW(Testgwt.java:66) at Unknown.TW(Testgwt.java:52) at > Unknown.ki(SchedulerImpl.java:180) at Unknown.bi(SchedulerImpl.java:345) at > Unknown.oi(SchedulerImpl.java:78) at Unknown.ii(SchedulerImpl.java:138) at > Unknown.Kh(Impl.java:290) at Unknown.Oh(Impl.java:347) at > Unknown.anonymous(Impl.java:93) at Unknown.anonymous(UnloadSupport.java:42) > > *and on the server: * > > SEVERE: This is what an exception might look like > java.lang.RuntimeException: 2 + 2 = 5 > at Unknown.ui(StackTraceCreator.java:180) > at Unknown.Zf(StackTraceCreator.java:518) > at Unknown.Yf(Throwable.java:56) > at Unknown.kh(Exception.java:29) > at Unknown.mh(RuntimeException.java:29) > at Unknown.PW(Testgwt.java:66) > at Unknown.TW(Testgwt.java:52) > at Unknown.ki(SchedulerImpl.java:180) > at Unknown.bi(SchedulerImpl.java:345) > at Unknown.oi(SchedulerImpl.java:78) > at Unknown.ii(SchedulerImpl.java:138) > at Unknown.Kh(Impl.java:290) > at Unknown.Oh(Impl.java:347) > at Unknown.anonymous(Impl.java:93) > at Unknown.anonymous(UnloadSupport.java:42) > > > Am Donnerstag, 20. Februar 2014 15:34:18 UTC+1 schrieb confile: >> >> I tried to get remote log messages. I tried this: >> >> Log.fatal("This is what an exception might look like", new >> RuntimeException("2 + 2 = 5")); >> >> >> I can see that in WEB-INF/deploy/web/symbolMaps/ there are many files of >> size 4.3MB each. So I guess the symbolMaps are generated successful. >> >> >> My remote servlet config is: >> >> <servlet> >> <servlet-name>gwt-log-remote-logger-servlet</servlet-name> >> >> <servlet-class>com.allen_sauer.gwt.log.server.RemoteLoggerServiceImpl</servlet-class> >> <init-param> >> <param-name>symbolMaps</param-name> >> <param-value>WEB-INF/deploy/web/symbolMaps/</param-value> >> </init-param> >> >> </servlet> >> <servlet-mapping> >> <servlet-name>gwt-log-remote-logger-servlet</servlet-name> >> <url-pattern>/gwt/web/gwt-log</url-pattern> >> </servlet-mapping> >> >> >> On the client side I get >> >> (-:-) 2014-02-20 15:22:04,388 [FATAL] This is what an exception might >> look like java.lang.RuntimeException: 2 + 2 = 5 at Unknown.X7b(Unknown >> Source:180) at Unknown.CTb(Unknown Source:518) at Unknown.ATb(Unknown >> Source:56) at Unknown.CVb(Unknown Source:29) at Unknown.GVb(Unknown >> Source:29) at Unknown.vQ(Unknown Source:53) at Unknown.N7b(Unknown >> Source:180) at Unknown.E7b(Unknown Source:345) at Unknown.R7b(Unknown >> Source:78) at Unknown.L7b(Unknown Source:138) at Unknown._6b(Unknown >> Source:290) at Unknown.d7b(Unknown Source:347) at Unknown.anonymous(Unknown >> Source:93) at Unknown.anonymous(Unknown Source:42) >> >> >> On the server side I get: >> >> 2014-02-20 15:22:04,259 [http-nio-8080-exec-7] FATAL gwt-log - This is >> what an exception might look like >> Message: 2 + 2 = 5 >> Line | Method >> ->> 180 | X7b in Unknown >> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >> | 518 | CTb in '' >> | 56 | ATb . . . in '' >> | 29 | CVb in '' >> | 53 | vQ . . . in '' >> | 180 | N7b in '' >> | 345 | E7b . . . in '' >> | 78 | R7b in '' >> | 138 | L7b . . . in '' >> | 290 | _6b in '' >> | 347 | d7b . . . in '' >> | 93 | anonymous in '' >> ^ 42 | anonymous in '' >> >> >> What do I have to do to get the deobfuscation working? >> >> >> >> >> >> >> -- You received this message because you are subscribed to the Google Groups "gwt-log" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/gwt-log. For more options, visit https://groups.google.com/groups/opt_out.
