X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2FChannelProperties.java;h=ede528f5b8e168b22c852b91aa73588dda7b969e;hb=a0ca13ac05f537ec85620b982650df13826c121e;hp=c33198b1670aeccb5d7778d116b057abe237624b;hpb=f7791271668cdcf6e87b638f0e6475ccdea6a3f9;p=jalview.git diff --git a/src/jalview/util/ChannelProperties.java b/src/jalview/util/ChannelProperties.java index c33198b..ede528f 100644 --- a/src/jalview/util/ChannelProperties.java +++ b/src/jalview/util/ChannelProperties.java @@ -18,7 +18,7 @@ import jalview.bin.Cache; public class ChannelProperties { - private static final String CHANNEL_PROPERTIES_FILENAME = "/channel_properties"; + private static final String CHANNEL_PROPERTIES_FILENAME = "/channel.props"; private static final Properties channelProps; @@ -63,8 +63,12 @@ public class ChannelProperties if (channelPropsURL == null) { // complete failure of channel_properties, set all properties to defaults - System.err.println("Failed to find '" + CHANNEL_PROPERTIES_FILENAME - + "' file, using defaults"); + System.err + .println("Failed to find '" + CHANNEL_PROPERTIES_FILENAME + + "' file at '" + + (channelPropsURL == null ? "null" + : channelPropsURL.toString()) + + "'. Using class defaultProps."); tryChannelProps = defaultProps; } else @@ -258,4 +262,4 @@ public class ChannelProperties { return iconList; } -} \ No newline at end of file +}