module ConfigurationNew:This module provides the function loading a configuration from a file in "new" format.sig
..end
The file format is as follows:
logger "a.b.c" { key_1 = val_1; ... key_n = val_n; }
where "a.b.c" is the name of the section and key_i/val_i pairs
define the properties of the section.val load : string -> Configuration.t
Raises Sys_error
if an i/o error occurs, and
Configuration.Exception
if file cannot be parsed.