diff options
| author | Simon Ruderich <simon.ruderich@fau.de> | 2025-11-25 08:08:19 +0100 |
|---|---|---|
| committer | Simon Ruderich <simon.ruderich@fau.de> | 2025-12-15 19:06:52 +0100 |
| commit | c9fa5eb4ab6cb575408882d2fbc85903c4066ba0 (patch) | |
| tree | d814249c46c1b644bca485c4c3fc3fa88c0aaef9 /exports | |
| parent | 4b2ba41dd46f4a9ae80b190fd3599653b81c4717 (diff) | |
client: add Logger interface to give programs more control
See https://codeberg.org/eduVPN/eduvpn-common/issues/102
Diffstat (limited to 'exports')
| -rw-r--r-- | exports/exports.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/exports/exports.go b/exports/exports.go index 3ef6781..05a77c2 100644 --- a/exports/exports.go +++ b/exports/exports.go @@ -163,6 +163,7 @@ func Register( func(oldState client.FSMStateID, newState client.FSMStateID, data interface{}) bool { return stateCallback(cb, oldState, newState, data) }, + nil, ) // Only update the state if we get no error if err == nil { |
