Wpis z mikrobloga

@qwelukasz: a błędów żadnych nie masz?
Ja już nie pamiętam jak z tym było, w końcu zrobiliśmy "uber loggera" czyli wysyłanie wszystkich zapytań INSERT, UPDATE, DELETE do elastic searcha ( ͡° ͜ʖ ͡°)
u mnie tak wyglądało parameters.orm.mappings

loggable:
type: annotation
alias: Gedmo
prefix: Gedmo\Loggable\Entity
dir: "%kernel.root_dir%/../vendor/gedmo/doctrine-extensions/lib/Gedmo/Loggable/Entity"
@Harry19911: co za cholerstwo, nie chce dzialac ;\

orm:
auto_generate_proxy_classes: "%kernel.debug%"
naming_strategy: doctrine.orm.naming_strategy.underscore
auto_mapping: true
mappings:
gedmo_loggable:
type: annotation
prefix: Gedmo\Loggable\Entity
dir: "%kernel.root_dir%/../vendor/gedmo/doctrine-extensions/lib/Gedmo/Loggable/Entity"
alias: GedmoLoggable # (optional) it will default to the name set for the mappingmapping
is_bundle: false
------------------------

use Gedmo\Mapping\Annotation as Gedmo;
/**
* @ORM\Entity
* @UniqueEntity(fields={"domain"})
* @Gedmo\Loggable
*/
class Domain
{

/**
* @var string
* @ORM\Column(type="string", nullable=false)
* @Assert\NotBlank()
* @