Echoing out ant fileset to screen for Debugging

前端 未结 3 1441
無奈伤痛
無奈伤痛 2021-02-01 01:59

I have this:

    
        
            
           


        
3条回答
  •  野的像风
    2021-02-01 02:48

    Enable ant's debug logging:

    $ ant -h
    ant [options] [target [target2 [target3] ...]]
    Options:
    ...
      -verbose, -v           be extra verbose
      -debug, -d             print debugging information
    

    Note though that this will generate a ton of output, so it may be best to capture the output to a file and then find the fileset info in a text editor:

    ant -debug compile > ant-out.txt
    

提交回复
热议问题