You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4php-dev@logging.apache.org by "Christian Hammers (JIRA)" <ji...@apache.org> on 2009/10/11 01:48:31 UTC

[jira] Resolved: (LOG4PHP-79) AppenderPDO: Some database fields seem a bit too short

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

Christian Hammers resolved LOG4PHP-79.
--------------------------------------

    Resolution: Fixed
      Assignee: Christian Hammers

fixed in svn

> AppenderPDO: Some database fields seem a bit too short
> ------------------------------------------------------
>
>                 Key: LOG4PHP-79
>                 URL: https://issues.apache.org/jira/browse/LOG4PHP-79
>             Project: Log4php
>          Issue Type: Improvement
>          Components: Code
>            Reporter: Christian Hammers
>            Assignee: Christian Hammers
>             Fix For: 2.0
>
>
> The default CREATAE TABLE statement in LoggerAppenderPDO is:
>                 $query = "CREATE TABLE {$this->table} (  timestamp varchar(32)," .
>                                                                                         "logger varchar(32)," .
>                                                                                         "level varchar(32)," .
>                                                                                         "message varchar(64)," .
>                                                                                         "thread varchar(32)," .
>                                                                                         "file varchar(64)," .
>                                                                                         "line varchar(4) );";
> It seems to me that 64 chars for the filename and message are a bit short.
> Even our examples are so deeply nested that the .php from the file name got cut off.
> I won't even think of a typical log message.
> I would propose to go for varchar(255) or even text ("clob") for message, varchar(255) for file and "int unsigned" for line (currently it looks like "9999 lines show be enough for everyone!" :) 

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