Switch to us.freedb.org (will make this configurable eventually); log

stack trace if CDDB lookup fails.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@154 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-06-10 21:32:23 +00:00
parent d3f78fcf1b
commit 5cac74f256
@@ -1,5 +1,5 @@
// //
// $Id: CDDBLookupPanel.java,v 1.3 2001/03/21 00:41:03 mdb Exp $ // $Id: CDDBLookupPanel.java,v 1.4 2001/06/10 21:32:23 mdb Exp $
package robodj.importer; package robodj.importer;
@@ -95,7 +95,7 @@ public class CDDBLookupPanel
public Object invoke () public Object invoke ()
throws Exception throws Exception
{ {
return CDDBUtil.doCDDBLookup("ca.freedb.org", info); return CDDBUtil.doCDDBLookup("us.freedb.org", info);
} }
public boolean abort () public boolean abort ()
@@ -131,6 +131,7 @@ public class CDDBLookupPanel
} else if (name.equals("cddb_lookup")) { } else if (name.equals("cddb_lookup")) {
_infoText.append("\n\nCDDB lookup failed: " + _infoText.append("\n\nCDDB lookup failed: " +
exception.getMessage()); exception.getMessage());
exception.printStackTrace();
} }
} }