diff options
| author | Teddy Wing | 2018-11-01 14:42:26 +0100 |
|---|---|---|
| committer | Teddy Wing | 2018-11-01 14:42:26 +0100 |
| commit | 6191caedd26752b6e699451bd602649f6f1200a1 (patch) | |
| tree | 2f1fb7180185830885d555af72ca83bbb2493886 | |
| parent | 1865e7f4beb72b333208b052dc03f214917ce4b4 (diff) | |
| download | dome-key-map-6191caedd26752b6e699451bd602649f6f1200a1.tar.bz2 | |
dome_key_state_load_map_group(): Print filename where parse error occurs
Instead of just printing the parse error, also print the mappings file
name to context about where the error comes from.
| -rw-r--r-- | src/ffi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ pub extern "C" fn dome_key_state_load_map_group(ptr: *mut State) { Some(map_group) }, Err(e) => { - error!("{}", e); + error!("In 'mappings.dkmap': {}", e); None }, }; |
