diff options
author | Maciej Kisielewski <maciej.kisielewski@canonical.com> | 2015-08-04 20:48:49 +0200 |
---|---|---|
committer | Maciej Kisielewski <maciej.kisielewski@canonical.com> | 2015-08-04 20:48:49 +0200 |
commit | 405eb8192502a545d7855bbd261aacdcfc5e0870 (patch) | |
tree | d2c7cd33693621696c4e2ac73e8d6bc2501a5cd4 /bin | |
parent | f9749e3cab2c723af5775bfa12fd4e3d4c734c60 (diff) |
providers:checkbox: fix reference to syslog in sleep_test
Signed-off-by: Maciej Kisielewski <maciej.kisielewski@canonical.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/sleep_test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sleep_test b/bin/sleep_test index 088a7a1..a3f7fc5 100755 --- a/bin/sleep_test +++ b/bin/sleep_test @@ -224,7 +224,7 @@ class SuspendTest(): Write a stamped marker to syslogd (will appear in /var/log/messages). This is used to calculate the elapsed time for each iteration. ''' - syslog(syslog.LOG_INFO, '---' + marker + '---') + syslog.syslog(syslog.LOG_INFO, '---' + marker + '---') def CheckAlarm(self, mode): ''' |