Odoo - 日志存档?

时间:2014-09-19 07:24:02

标签: logging openerp odoo openerp-8

在旧版本中,日志归档是默认的,它会每天归档(mv旧日志到不同的日志文件)并保存一周左右的归档。现在在Odoo版本8上,它将所有内容放在一个日志文件中,一段时间后它会变得非常大。加载该文件甚至需要一些时间。有没有办法以某种方式获得旧功能?

我在Odoo配置文件中有这些行:

logfile = home/myuser/var/log/openerp/openerp-server.log
logrotate = True ;it seems to not do anything or I dont see what it does.

这是我发现的关于Odoo配置文件的日志记录(仅适用于v7,所以不知道它与v8的相关程度):

# file where the server log will be stored
logfile = None

# do not rotate the logfile
logrotate = True

# Send the log to the syslog server
syslog = False

# setup a handler at LEVEL for a given PREFIX. An empty PREFIX indicates the root logger. This option can be repeated. Example: "openerp.orm:DEBUG" or "werkzeug:CRITICAL" (default: ":INFO")
log_handler = [':INFO']

# specify the level of the logging. Accepted values: info, debug_rpc, warn, test, critical, debug_sql, error, debug, debug_rpc_answer, notset
log_level = info

2 个答案:

答案 0 :(得分:4)

似乎logrotate参数的工作原理如何。起初我没有注意到它,也许整个24小时还没有通过或(存档日志需要一些时间)。但现在我看到它每天存档日志。

答案 1 :(得分:0)

请注意,从 Odoo 13 开始,logrotate 不再在 Odoo 本身中处理。

来源:https://github.com/odoo/odoo/pull/29073

您必须根据您的系统设置另一个日志轮换。

在 linux 上,一种方法是使用 logrotate,这是一个脚本(适用于基于 apt 的发行版,但应该很容易适应)

https://github.com/ventor-tech/odoo-install-script/blob/main/logrotate.sh