Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Logs - Logging #47

Merged
merged 1 commit into from
Nov 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/common/src/PVRGlobals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ namespace
int64_t pvrdebug_oldMs = 0;
int64_t pvrInfo_oldMs = 0;

const wstring logFileDebug = L"\\..\\..\\drivers\\pvr\\logs\\pvrDebuglog.txt";
const wstring logFileInfo = L"\\..\\..\\drivers\\pvr\\logs\\pvrlog.txt";
const wstring logFileDebug = L"\\..\\..\\drivers\\PVRServer\\logs\\pvrDebuglog.txt";
const wstring logFileInfo = L"\\..\\..\\drivers\\PVRServer\\logs\\pvrlog.txt";
}

std::wstring _GetExePath(void)
Expand Down
2 changes: 1 addition & 1 deletion code/windows/PhoneVR/PhoneVR/PVRFileManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace
};

//const wchar_t *const setsFile = L"C:\\Program Files\\PhoneVR\\pvrsettings.json";
const wchar_t *const setsFile = L"\\..\\..\\drivers\\pvr\\pvrsettings.json";
const wchar_t *const setsFile = L"\\..\\..\\drivers\\PVRServer\\pvrsettings.json";

nlohmann::json PVRGetSets()
{
Expand Down