Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    No source code is available for type com.isomorphic.log.Logger; did you forget to inherit a required module?

    hey guys, I get this error

    [SIZE=2][ERROR] Line 28: No source code is available for type com.isomorphic.log.Logger; did you forget to inherit a required module?[/SIZE]
    [SIZE=2][INFO] [ERROR] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly[/SIZE]


    while compiling. in my app.gwt.xml I have following "inherits"

    <inherits name="com.smartgwt.tools.SmartGwtTools"/>
    <inherits name="com.smartgwtpower.SmartGwtPower"/>
    <inherits name="com.smartgwtpower.tools.Tools"/>

    what is missing here? Any hint is welcome
    Last edited by isbp; 16 Jun 2020, 18:48.

    #2
    You are possibly trying to use our server-side libraries (com.isomorphic namespace) in your GWT UI. This won't work. They are server-side libraries and GWT cannot translate them to JavaScript.

    There are client-side logging features in the com.smartgwt namespace, see this overview of various debugging services and approaches.

    Comment


      #3
      thank u! i figured it out in the meantime.

      Comment

      Working...
      X