Return-Path: Delivered-To: apmail-openjpa-dev-archive@www.apache.org Received: (qmail 88254 invoked from network); 20 May 2008 15:45:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 May 2008 15:45:16 -0000 Received: (qmail 29924 invoked by uid 500); 20 May 2008 15:45:18 -0000 Delivered-To: apmail-openjpa-dev-archive@openjpa.apache.org Received: (qmail 29764 invoked by uid 500); 20 May 2008 15:45:17 -0000 Mailing-List: contact dev-help@openjpa.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openjpa.apache.org Delivered-To: mailing list dev@openjpa.apache.org Received: (qmail 29753 invoked by uid 99); 20 May 2008 15:45:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 May 2008 08:45:17 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 May 2008 15:44:39 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 95E09234C11B for ; Tue, 20 May 2008 08:44:55 -0700 (PDT) Message-ID: <811012202.1211298295612.JavaMail.jira@brutus> Date: Tue, 20 May 2008 08:44:55 -0700 (PDT) From: "Craig Russell (JIRA)" To: dev@openjpa.apache.org Subject: [jira] Commented: (OPENJPA-604) Log spec sets in persistence unit's property fail with exception when run in different locale In-Reply-To: <122421146.1211211955605.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OPENJPA-604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12598332#action_12598332 ] Craig Russell commented on OPENJPA-604: --------------------------------------- Without having a use-case in front of me, I don't understand the value of having localized Log properties. I'd prefer #1. > Log spec sets in persistence unit's property fail with exception when run in different locale > --------------------------------------------------------------------------------------------- > > Key: OPENJPA-604 > URL: https://issues.apache.org/jira/browse/OPENJPA-604 > Project: OpenJPA > Issue Type: Improvement > Components: lib > Affects Versions: 1.0.3, 1.1.0, 1.2.0 > Reporter: Albert Lee > Assignee: Albert Lee > Priority: Minor > Fix For: 1.2.0 > > > When an application sets the Log property in a persistence unit (persistence.xml) or passes in through map during createEntityManager[Factory] using one locale, this setting will fail when runs in a different locale. > It is caused by the LogImpl: > 1) retrieve the *_STR from the localizer.properties > public static final String TRACE_STR = _loc.get("log-trace").getMessage(); > public static final String INFO_STR = _loc.get("log-info").getMessage(); > public static final String WARN_STR = _loc.get("log-warn").getMessage(); > public static final String ERROR_STR = _loc.get("log-error").getMessage(); > public static final String FATAL_STR = _loc.get("log-fatal").getMessage(); > 2) compare only the current locale *_STR values; > public static short getLevel(String str) { > str = str.toUpperCase().trim(); > short val = TRACE_STR.equals(str) ? Log.TRACE : > INFO_STR.equals(str) ? Log.INFO : > WARN_STR.equals(str) ? Log.WARN : > ERROR_STR.equals(str) ? Log.ERROR : > FATAL_STR.equals(str) ? Log.FATAL : -1; > if (val == -1) > throw new IllegalArgumentException > (_loc.get("log-bad-constant", str).getMessage()); > return val; > } > I understand the intention is to match the Log setting using the same locale, however if the Log string is set in an application's persistence unit (persistence.xml) or business logic (createEntityManagerFactory( ...., map)), the application will fail. > I see two alternatives: > 1) Since Log is part of the property and configuration framework, none of these property settings are local sensitive. We can make Log property NOT locale sensitive, i.e. always use TRACE, INFO, WARN, ERROR and FATAL as the Log values. > 2) Access both English (as in alternative 1) and also whatever current locale Log values. I.e. English only Log values will work when set in persistence.xml and business logic regardless of the current locale setting but locale specific settings ONLY work in the same current locale. > Personally, the second option is more attractive and also backward compatible with existing application that uses locale specific behavior. > Please comment on your preference! > Albert Lee. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.