genode/libports/src/server/fs_log
Norman Feske c7f1b85652 Retire libc_{log, block, fs, rom}
Those plugins are superseded by libc_vfs.

Issue #999
2014-04-29 15:25:39 +02:00
..
README Add a service to log into a file 2013-05-10 11:16:13 +02:00
main.cc os: Split Session_label from Session_policy 2013-09-23 14:25:59 +02:00
target.mk Retire libc_{log, block, fs, rom} 2014-04-29 15:25:39 +02:00

README

LOG server that writes log messages onto a file system.

Using this component, log messages of different processes can be redirected
to files on a file-system service. The assignment of processes to files can
be expressed in the configuration as follows:

! <start name="fs_log">
!   <resource name="RAM" quantum="2M"/>
!   <provides><service name="LOG"/></provides>
!   <config>
!     <policy label="noux"    file="/noux.log" />
!     <policy label="noux ->" file="/noux_process.log" />
!   </config>
! </start>

In this example, all messages originating from the noux process are directed
to the file '/noux.log'. All messages originating from children of the noux
process end up in the file '/noux_process.log'.