What is "WARNING 'syslog' option is deprecated"?

Hi all have been trying to make a samba ubuntu server and I ran testparm and it came up with ---- WARNING "syslog" option is deprecated' ---- In smb.conf I have syslog set to 0 (I have no idea what that means) If anyone has any ideas. Thank Nic

2

4 Answers

The syntax you are looking for is: logging = syslog@1 /var/log/samba/log.%m

Just comment out or remove syslog = 0. The number is the severity mapping for which logs the errors go into. 0=> log_err, 1=> log_warning, 2=> log_notice.

The number parameter sets a threshold for sending messages to syslog. Only messages with debug level less than this value will be sent to syslog.

Default is 1. If you are setting up a development sandbox I would just whack that stuff unless you are having problems and need to see the logs.

I'm using Debian and the above syntax shows no errors running testparm.

2

I had the same warning. It went away when I commented out the line

syslog = 0

in the file smb.conf.

1

As a supplement to @user760430 answer, You can use multiple log "backends". In my example: syslog and file.

# log file
log file = /var/log/samba/log.%m
# no log to syslog (0-level), log 2-level to file
logging = syslog@0 file@2
# overall log level
log level = 3

Newer versions of Samba have a more powerful parameter named logging which provides finer control over logging. The warning tells you that in future versions the parameter syslog may be considered for removal in favor of the newer logging. See man smb.conf for details.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like