You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ddlutils-dev@db.apache.org by "Thomas Dudziak (JIRA)" <ji...@apache.org> on 2007/09/17 02:50:33 UTC

[jira] Updated: (DDLUTILS-181) If DatabaseTaskBase._simpleLogging is false, _log is never set

     [ https://issues.apache.org/jira/browse/DDLUTILS-181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thomas Dudziak updated DDLUTILS-181:
------------------------------------

    Fix Version/s: 1.1

> If DatabaseTaskBase._simpleLogging is false, _log is never set
> --------------------------------------------------------------
>
>                 Key: DDLUTILS-181
>                 URL: https://issues.apache.org/jira/browse/DDLUTILS-181
>             Project: DdlUtils
>          Issue Type: Bug
>          Components: Ant Tasks
>    Affects Versions: 1.0
>            Reporter: Joe Fisher
>            Assignee: Thomas Dudziak
>            Priority: Minor
>             Fix For: 1.1
>
>
> If someone calls setSimpleLogging(false), internal varliaable _log reamins null
> As such
>     DdlToDatabaseTask task = new DdlToDatabaseTask();
>     task.setSimpleLogging(false);
> ...
> NPE later
> Below is my fix (in patch format)
> Index: DatabaseTaskBase.java
> ===================================================================
> --- DatabaseTaskBase.java (revision 558128)
> +++ DatabaseTaskBase.java (working copy)
> @@ -345,6 +345,8 @@
>      {^M
>          if (_simpleLogging) {^M
>              initLogging();^M
> +        } else {^M
> +            _log = LogFactory.getLog(getClass());^M
>          }^M
>  ^M
>          if (!hasCommands())^M

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.