mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Improve log message to contain 'line' in FileBasedOpenPgpTrustStore
This commit is contained in:
parent
b36b19d864
commit
97feeb2e2c
1 changed files with 2 additions and 2 deletions
|
@ -79,8 +79,8 @@ public class FileBasedOpenPgpTrustStore extends AbstractOpenPgpTrustStore {
|
||||||
trust = Trust.valueOf(line);
|
trust = Trust.valueOf(line);
|
||||||
break;
|
break;
|
||||||
} catch (IllegalArgumentException e) {
|
} catch (IllegalArgumentException e) {
|
||||||
LOGGER.log(Level.WARNING, "Skipping invalid trust record in line " + lineNr + " of file " +
|
LOGGER.log(Level.WARNING, "Skipping invalid trust record in line " + lineNr + " \"" + line
|
||||||
file.getAbsolutePath());
|
+ "\" of file " + file.getAbsolutePath());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return trust != null ? trust : Trust.undecided;
|
return trust != null ? trust : Trust.undecided;
|
||||||
|
|
Loading…
Reference in a new issue