[MERGE] fix opw issue 56037 : res.log context need to allow more the 250 char
authortfr@openerp.com <>
Fri, 10 Feb 2012 10:09:20 +0000 (11:09 +0100)
committertfr@openerp.com <>
Fri, 10 Feb 2012 10:09:20 +0000 (11:09 +0100)
bzr revid: tfr@openerp.com-20120210100920-fcbah41cmldmevw4

bin/addons/base/res/res_log.py

index 26e1eae..d9894e4 100644 (file)
@@ -27,7 +27,7 @@ class res_log(osv.osv):
         'name': fields.char('Message', size=250, help='The logging message.', required=True, select=1),
         'user_id': fields.many2one('res.users','User'),
         'res_model': fields.char('Object', size=128, select=1),
-        'context': fields.char('Context', size=250),
+        'context': fields.text('Context'),
         'res_id': fields.integer('Object ID'),
         'secondary': fields.boolean('Secondary Log', help='Do not display this log if it belongs to the same object the user is working on'),
         'create_date': fields.datetime('Creation Date', readonly=True, select=1),