Removed the "Searching for directory" logging as they were spamming the logs

git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@1392 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
skidau 2015-05-06 07:49:45 +00:00
parent 84b1383aca
commit 4cc36ab359
1 changed files with 0 additions and 9 deletions

View File

@ -641,10 +641,7 @@ char* FindConfigFile(char *name)
#define EXE_NAME "vbam" #define EXE_NAME "vbam"
#endif // ! _WIN32 #endif // ! _WIN32
log("Searching for file %s\n", name);
if (GETCWD(buffer, 2048)) { if (GETCWD(buffer, 2048)) {
log("Searching current directory: %s\n", buffer);
} }
if (FileExists(name)) if (FileExists(name))
@ -653,7 +650,6 @@ char* FindConfigFile(char *name)
} }
if (homeDir) { if (homeDir) {
log("Searching home directory: %s%c%s\n", homeDir, FILE_SEP, DOT_DIR);
sprintf(path, "%s%c%s%c%s", homeDir, FILE_SEP, DOT_DIR, FILE_SEP, name); sprintf(path, "%s%c%s%c%s", homeDir, FILE_SEP, DOT_DIR, FILE_SEP, name);
if (FileExists(path)) if (FileExists(path))
{ {
@ -664,7 +660,6 @@ char* FindConfigFile(char *name)
#ifdef _WIN32 #ifdef _WIN32
char *home = getenv("USERPROFILE"); char *home = getenv("USERPROFILE");
if (home != NULL) { if (home != NULL) {
log("Searching user profile directory: %s\n", home);
sprintf(path, "%s%c%s", home, FILE_SEP, name); sprintf(path, "%s%c%s", home, FILE_SEP, name);
if (FileExists(path)) if (FileExists(path))
{ {
@ -677,7 +672,6 @@ char* FindConfigFile(char *name)
char *path = getenv("PATH"); char *path = getenv("PATH");
if (path != NULL) { if (path != NULL) {
log("Searching PATH\n");
strncpy(buffer, path, 4096); strncpy(buffer, path, 4096);
buffer[4095] = 0; buffer[4095] = 0;
char *tok = strtok(buffer, PATH_SEP); char *tok = strtok(buffer, PATH_SEP);
@ -697,7 +691,6 @@ char* FindConfigFile(char *name)
} }
else { else {
// executable is relative to some directory // executable is relative to some directory
log("Searching executable directory\n");
strcpy(buffer, arg0); strcpy(buffer, arg0);
char *p = strrchr(buffer, FILE_SEP); char *p = strrchr(buffer, FILE_SEP);
if (p) { if (p) {
@ -710,14 +703,12 @@ char* FindConfigFile(char *name)
} }
} }
#else // ! _WIN32 #else // ! _WIN32
log("Searching data directory: %s\n", PKGDATADIR);
sprintf(path, "%s%c%s", PKGDATADIR, FILE_SEP, name); sprintf(path, "%s%c%s", PKGDATADIR, FILE_SEP, name);
if (FileExists(path)) if (FileExists(path))
{ {
return path; return path;
} }
log("Searching system config directory: %s\n", SYSCONFDIR);
sprintf(path, "%s%c%s", SYSCONFDIR, FILE_SEP, name); sprintf(path, "%s%c%s", SYSCONFDIR, FILE_SEP, name);
if (FileExists(path)) if (FileExists(path))
{ {