mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-12 19:38:26 -06:00
Linux/macOS: print LANG environment variable to console only in DEBUG mode
This commit is contained in:
@@ -70,7 +70,9 @@ namespace VeraCrypt
|
|||||||
string filename = filenamePrefix + defaultLang + filenamePost;
|
string filename = filenamePrefix + defaultLang + filenamePost;
|
||||||
if(const char* env_p = getenv("LANG")){
|
if(const char* env_p = getenv("LANG")){
|
||||||
string lang(env_p);
|
string lang(env_p);
|
||||||
|
#ifdef DEBUG
|
||||||
std::cout << lang << std::endl;
|
std::cout << lang << std::endl;
|
||||||
|
#endif
|
||||||
if ( lang.size() > 1 ){
|
if ( lang.size() > 1 ){
|
||||||
int found = lang.find(".");
|
int found = lang.find(".");
|
||||||
if ( found > 1 ){
|
if ( found > 1 ){
|
||||||
|
|||||||
Reference in New Issue
Block a user