Logging users' activities - items created / updated / deleted

Hello everybody!
I’ve recently installed the Logs module (https://github.com/Daniel-KM/Omeka-S-module-Log) for logging in OmekaS. I followed all the instructions and modified .htaccess and local.config.php that looks like this:

<?php
return [
  'logger' => [
  'log' => true,
  'priority' => \Zend\Log\Logger::INFO,
  ],
  'writers' => [
    'db' => true,
    'stream' => true,
    'job' => true,
    'syslog' => true,
    'sentry' => false,
  ],
'http_client' => [
'sslcapath' => null,
'sslcafile' => null,
],
'cli' => [
'phpcli_path' => null,
],
'thumbnails' => [
'types' => [
'large' => ['constraint' => 800],
'medium' => ['constraint' => 200],
'square' => ['constraint' => 200],
],
'thumbnailer_options' => [
'imagemagick_dir' => null,
],
],
'translator' => [
'locale' => 'en_US',
],
'service_manager' => [
'aliases' => [
'Omeka\File\Store' => 'Omeka\File\Store\Local',
'Omeka\File\Thumbnailer' => 'Omeka\File\Thumbnailer\ImageMagick',
],
],
];

Currently it prints only Jobs (I thought it would print more stuff though) and I’d like to get logs about changes in single items (create - update - delete, and the user that did it).

Does anybody have experience to share or some suggestion?
Many thanks!

1 Like

This topic was automatically closed 250 days after the last reply. New replies are no longer allowed.