Changeset 13892


Ignore:
Timestamp:
2007-02-12T11:11:57+13:00 (17 years ago)
Author:
shaoqun
Message:

report an error message if the user hasn't provide the library url

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/Gatherer.java

    r13631 r13892  
    634634    // used to send reload coll messages to the tomcat server
    635635    static public void configGS3Server(String site, String command) {
    636     if (Configuration.library_url == null) return;
     636    if (Configuration.library_url == null){
     637        System.out.println("Error: you have not provide the Greenstone Library address."); 
     638           return;
     639
     640    }
    637641         
    638642    try {
Note: See TracChangeset for help on using the changeset viewer.