- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 25 Aug 2009 08:53:27 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/tasklisttree In directory hutz:/tmp/cvs-serv12563/src/org/w3c/unicorn/tasklisttree Modified Files: Tag: dev2 TLTNode.java TLTExec.java TLTIf.java TLTCond.java Log Message: changed logger Index: TLTNode.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/tasklisttree/Attic/TLTNode.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- TLTNode.java 11 Aug 2009 16:05:38 -0000 1.1.2.1 +++ TLTNode.java 25 Aug 2009 08:53:25 -0000 1.1.2.2 @@ -23,8 +23,7 @@ private ArrayList<TLTIf> ifList; // list of conditions and child nodes - private static final Log logger = LogFactory - .getLog("org.w3c.unicorn.tasklisttree"); + private static final Log logger = LogFactory.getLog(TLTNode.class); public boolean bExpandingOrExpanded = false; Index: TLTExec.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/tasklisttree/Attic/TLTExec.java,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- TLTExec.java 17 Aug 2009 09:08:44 -0000 1.1.2.2 +++ TLTExec.java 25 Aug 2009 08:53:25 -0000 1.1.2.3 @@ -25,8 +25,7 @@ private Observer observer; - private static final Log logger = LogFactory - .getLog("org.w3c.unicorn.tasklisttree"); + private static final Log logger = LogFactory.getLog(TLTExec.class); /** * Constructor for a TLTExec. Index: TLTCond.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/tasklisttree/Attic/TLTCond.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- TLTCond.java 11 Aug 2009 16:05:38 -0000 1.1.2.1 +++ TLTCond.java 25 Aug 2009 08:53:25 -0000 1.1.2.2 @@ -23,8 +23,7 @@ private String value; - private static final Log logger = LogFactory - .getLog("org.w3c.unicorn.tasklisttree"); + private static final Log logger = LogFactory.getLog(TLTCond.class); /** * Advanced constructor for a TLTCond. Index: TLTIf.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/tasklisttree/Attic/TLTIf.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- TLTIf.java 11 Aug 2009 16:05:38 -0000 1.1.2.1 +++ TLTIf.java 25 Aug 2009 08:53:25 -0000 1.1.2.2 @@ -21,8 +21,7 @@ private TLTNode ifNotOk; - private static final Log logger = LogFactory - .getLog("org.w3c.unicorn.tasklisttree"); + private static final Log logger = LogFactory.getLog(TLTIf.class); /** * Default constructor for a TLTIf.
Received on Tuesday, 25 August 2009 09:09:00 UTC