From: David ‘Bombe’ Roden Date: Mon, 7 Apr 2008 08:51:09 +0000 (+0000) Subject: output errors to System.err X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=3eef5aa816b0f219c0ef384a0b28ec4d59e66c85;p=jSite2.git output errors to System.err git-svn-id: http://trooper/svn/projects/jSite/trunk@635 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/jsite/i18n/I18n.java b/src/net/pterodactylus/jsite/i18n/I18n.java index e069fa5..ae6bef5 100644 --- a/src/net/pterodactylus/jsite/i18n/I18n.java +++ b/src/net/pterodactylus/jsite/i18n/I18n.java @@ -87,7 +87,7 @@ public class I18n { String value = null; value = currentLanguage.getProperty(key); if (value == null) { - System.out.println("please fix “" + key + "”!"); + System.err.println("please fix “" + key + "”!"); return null; } if ((parameters != null) && (parameters.length > 0)) {