我已经在我的实体上进行了日志记录,因此当我使用@Gedmo\Versioned
注释更改产品字段时,会创建一个新版本。但唯一的问题是username
字段仍为NULL
。有一个经过身份验证的用户,因为更新是在Sonata Admin后端执行的。
<?php
namespace MyApp\CmsBundle\Entity\Log;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Loggable\Entity\MappedSuperclass\AbstractLogEntry;
use Gedmo\Loggable\Entity\Repository\LogEntryRepository;
/**
* @ORM\Entity(repositoryClass="Gedmo\Loggable\Entity\Repository\LogEntryRepository", readOnly=true)
* @ORM\Table(
* name="log_product",
* indexes={
* @ORM\Index(name="log_class_lookup_idx", columns={"object_class"}),
* @ORM\Index(name="log_date_lookup_idx", columns={"logged_at"}),
* @ORM\Index(name="log_user_lookup_idx", columns={"username"}),
* }
* )
*/
class ProductLog extends AbstractLogEntry
{
}
所以log_user_lookup_idx
似乎没有正常工作,我需要一个特定的配置吗?
答案 0 :(得分:6)
看来我错过了一些配置,将以下内容添加到主app/config/config.yml
文件中就可以了。
stof_doctrine_extensions:
default_locale: en
orm:
default:
loggable: true
我最初在我的捆绑包中做到了这一点&#39; services.yml
config:
gedmo.listener.loggable:
class: Gedmo\Loggable\LoggableListener
tags:
- { name: doctrine.event_subscriber, connection: default }
calls:
- [ setAnnotationReader, [ "@annotation_reader" ] ]
这设法跟踪正在修改的实体而不是用户,我已经删除了此配置,并且日志记录仅用于stof_doctrine_extensions
配置设置。
如果您的代码库中同时包含两者,那么我发现的所有内容都会被记录两次。