mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-18 23:16:37 +02:00
Fixed #880. Print if AESNI or AVX enabled
This commit is contained in:
parent
a4e6d8120b
commit
3f64c042bd
1 changed files with 6 additions and 0 deletions
|
@ -115,6 +115,12 @@ namespace i2p
|
|||
}
|
||||
|
||||
LogPrint(eLogInfo, "i2pd v", VERSION, " starting");
|
||||
#ifdef AESNI
|
||||
LogPrint(eLogInfo, "AESNI enabled");
|
||||
#endif
|
||||
#if defined(__AVX__)
|
||||
LogPrint(eLogInfo, "AVX enabled");
|
||||
#endif
|
||||
LogPrint(eLogDebug, "FS: main config file: ", config);
|
||||
LogPrint(eLogDebug, "FS: data directory: ", datadir);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue