diff options
author | John Estabrook <jestabro@vyos.io> | 2025-01-31 09:35:46 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2025-02-06 09:25:32 -0600 |
commit | e3eeceb38deffa63ed2eb50838717909de8ec149 (patch) | |
tree | 49c399d390eabc6998ec907f24be02c27f1578f2 /src | |
parent | a375860a302a224722d254c31a1cb210cb12d972 (diff) | |
download | vyconf-e3eeceb38deffa63ed2eb50838717909de8ec149.tar.gz vyconf-e3eeceb38deffa63ed2eb50838717909de8ec149.zip |
T6946: add log message on read
Diffstat (limited to 'src')
-rw-r--r-- | src/startup.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/startup.ml b/src/startup.ml index db0d719..8d84c84 100644 --- a/src/startup.ml +++ b/src/startup.ml @@ -136,5 +136,6 @@ module I = Vyos1x.Internal.Make(Vyos1x.Reference_tree) let read_reference_tree file = try let reftree = I.read_internal file in + log_info @@ Printf.sprintf "Reading interface definitions from %s" file; Ok reftree with Sys_error msg -> Error msg |