genode/repos/libports/src/server/fs_log
Norman Feske ca971bbfd8 Move repositories to 'repos/' subdirectory
This patch changes the top-level directory layout as a preparatory
step for improving the tools for managing 3rd-party source codes.
The rationale is described in the issue referenced below.

Issue #1082
2014-05-14 16:08:00 +02:00
..
README Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00
main.cc Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00
target.mk Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +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'.