2012-04-02 21:24:30 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd .
Copyright 2011 Lennart Poettering
systemd is free software ; you can redistribute it and / or modify it
2012-04-12 02:20:58 +04:00
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation ; either version 2.1 of the License , or
2012-04-02 21:24:30 +04:00
( at your option ) any later version .
systemd is distributed in the hope that it will be useful , but
WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
2012-04-12 02:20:58 +04:00
Lesser General Public License for more details .
2012-04-02 21:24:30 +04:00
2012-04-12 02:20:58 +04:00
You should have received a copy of the GNU Lesser General Public License
2012-04-02 21:24:30 +04:00
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
# include <systemd/sd-journal.h>
2012-07-13 02:29:26 +04:00
# include "log.h"
2012-04-02 21:24:30 +04:00
int main ( int argc , char * argv [ ] ) {
2012-10-03 19:37:44 +04:00
char huge [ 4096 * 1024 ] ;
2012-07-13 02:29:26 +04:00
log_set_max_level ( LOG_DEBUG ) ;
2012-04-02 21:24:30 +04:00
sd_journal_print ( LOG_INFO , " piepapo " ) ;
sd_journal_send ( " MESSAGE=foobar " ,
" VALUE=%i " , 7 ,
NULL ) ;
2012-07-31 18:09:01 +04:00
errno = ENOENT ;
sd_journal_perror ( " Foobar " ) ;
sd_journal_perror ( " " ) ;
2012-10-03 19:37:44 +04:00
memset ( huge , ' x ' , sizeof ( huge ) ) ;
memcpy ( huge , " HUGE= " , 5 ) ;
char_array_0 ( huge ) ;
sd_journal_send ( " MESSAGE=Huge field attached " ,
huge ,
NULL ) ;
2012-10-25 03:19:24 +04:00
sd_journal_send ( " MESSAGE=uiui " ,
" VALUE=A " ,
" VALUE=B " ,
" VALUE=C " ,
" SINGLETON=1 " ,
" OTHERVALUE=X " ,
" OTHERVALUE=Y " ,
" WITH_BINARY=this is a binary value \a " ,
NULL ) ;
2012-04-02 21:24:30 +04:00
return 0 ;
}