Skip to content

Commit fb4a73d

Browse files
committed
Comment out debug prints.
1 parent c8e797c commit fb4a73d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

OSVR-Unity/Assets/OSVRUnity/src/DLLSearchPathFixer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static void fix()
4949
private DLLSearchPathFixer()
5050
{
5151
var currentPath = Environment.GetEnvironmentVariable("PATH", EnvironmentVariableTarget.Process);
52-
Debug.Log(String.Format("Old PATH: {0}", currentPath));
52+
//Debug.Log(String.Format("Old PATH: {0}", currentPath));
5353
OrigDirs = new List<string>(currentPath.Split(Path.PathSeparator));
5454
UnityDataDir = Application.dataPath;
5555
UnityDataDirBackslashed = Application.dataPath.Replace("/", "\\");
@@ -65,7 +65,7 @@ private void ApplyChanges()
6565
allDirs.AddRange(OrigDirs);
6666

6767
var newPathString = String.Join(Path.PathSeparator.ToString(), allDirs.ToArray());
68-
Debug.Log(String.Format("New PATH: {0}", newPathString));
68+
//Debug.Log(String.Format("New PATH: {0}", newPathString));
6969
Environment.SetEnvironmentVariable("PATH", newPathString, EnvironmentVariableTarget.Process);
7070
}
7171

0 commit comments

Comments
 (0)