Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #10636

Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message?

From Lew <lewbloch@gmail.com>
Newsgroups comp.lang.java.programmer
Subject Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message?
Date 2011-12-09 17:46 -0800
Organization http://groups.google.com
Message-ID <8577219.1484.1323481573410.JavaMail.geo-discussion-forums@prez15> (permalink)
References <769dffa0-4077-4a3a-ad9a-57c5f5028cd8@l19g2000yqc.googlegroups.com>

Show all headers | View raw


www wrote:
> I am running Ant on command line, there are many, many WARNING
> messages, cluttering my screen:

That's because there are many, many bad code idioms cluttering up your program.

>     [javac] xx.java:48: warning: [unchecked] unchecked call to
> <K1,V1>build(com.google.common.cache.CacheLoader<? super K1,V1>) as a
> member of the raw type com.google.common.cache.CacheBuilder
>     [javac]         return builder.build(new
> CacheLoader<LocationAndDataTypeIdentifier, IdentifierZipFileHandler>()
>     [javac]                             ^
>     [javac] www.java:48: warning: [unchecked] unchecked conversion

... such as improper generic conversions.

I'm guessing there's a type relationship problem between the 'CacheLoader' reference you showed us and the return type of the method, which you declined to show us.

>     [javac] found   : com.google.common.cache.Cache
>     [javac] required:
> com.google.common.cache.Cache<ohd.hseb.hefs.pe.tools.LocationAndDataTypeIdentifier,ohd.hseb.hefs.pe.acceptance.IdentifierZipFileHandler>
> 
> ...
> 
>     [javac] 1 error
>     [javac] 52 warnings
> 
> BUILD FAILED
> /a/b/c/build.xml:106: Compile failed; see the compiler error output
> for details.
> 
> I hope to make these warning message go away. I cannot see the
> compiler error either. There is no a output file. Should the error be
> on the screen?

You show us some of the error messages that you say "clutter up your screen".  Doesn't that count as "on the screen"?

What do you mean "no a output file"?

Ant reports all javac output in its output.  Since you show us some of your output, I conclude that the thing you want to see is in your output, just not in the part you deigned to share.

I've used Ant lots of times to compile, build and run Java programs.  The output shows up on the screen just as you showed it, every time, unless redirected.  The output is the literal output of the 'javac' compiler, in the case of compilation, and therefore contains all the information you can get to track down your many, many bugs.

-- 
Lew

Back to comp.lang.java.programmer | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? www <xsli2@yahoo.com> - 2011-12-09 07:46 -0800
  Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? "John B. Matthews" <nospam@nospam.invalid> - 2011-12-09 12:19 -0500
  Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? Roedy Green <see_website@mindprod.com.invalid> - 2011-12-09 10:27 -0800
    Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? www <xsli2@yahoo.com> - 2011-12-09 11:59 -0800
      Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? Lew <lewbloch@gmail.com> - 2011-12-09 17:47 -0800
        Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? ilAn <idonot@wantspam.net> - 2011-12-10 03:55 +0200
        Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? Roedy Green <see_website@mindprod.com.invalid> - 2011-12-10 06:14 -0800
          Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? Gene Wirchenko <genew@ocis.net> - 2011-12-12 12:20 -0800
            Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? Arne Vajhøj <arne@vajhoej.dk> - 2011-12-12 19:51 -0500
              Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? Gene Wirchenko <genew@ocis.net> - 2011-12-13 09:49 -0800
  Re: When running Ant on command line, how to not-show its WARNING messages and only show ERROR message? Lew <lewbloch@gmail.com> - 2011-12-09 17:46 -0800

csiph-web