This is relatively common on systemd based machines. Events like this may happen when users login, cron jobs run, at jobs...
If you are running rsyslogd then it's possible to create a filter that drops these messages.
e.g. on RedHat (CentOS, etc), it's documented: https://access.redhat.com/solutions/1564823
echo 'if $programname == "systemd" and ($msg contains "Starting Session" or $msg contains "Started Session" or $msg contains "Created slice" or $msg contains "Starting user-" or $msg contains "Starting User Slice of" or $msg contains "Removed session" or $msg contains "Removed slice User Slice of" or $msg contains "Stopping User Slice of") then stop' >/etc/rsyslog.d/ignore-systemd-session-slice.conf
systemctl restart rsyslog
This will prevent local logging of these events:
"Starting Session"
"Started Session"
"Created slice"
"Starting user-"
"Starting User Slice of"
"Removed session"
"Removed slice User Slice of"
"Stopping User Slice of"
You can adjust the filter to your needs.