Skip to content

Commit f86b4b0

Browse files
author
AJubrey
committed
[REMOVED] logs
1 parent 3767a51 commit f86b4b0

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

Assets/FbxExporters/Editor/FbxExportSettings.cs

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,6 @@ private static string GetMayaLocationFromEnvironmentVariable(string env)
281281
{
282282
//We can assume our path is: /Applications/Autodesk/maya2017/Maya.app/Contents
283283
//So we need to go up three folders.
284-
Debug.Log(string.Format("parsing location {0}",location));
285-
286284

287285
var appFolder = Directory.GetParent(location);
288286
if (appFolder != null)
@@ -478,8 +476,6 @@ public int GetPreferredDCCApp()
478476

479477
for (int i = 0; i < dccOptionNames.Count; i++)
480478
{
481-
Debug.Log(string.Format("check name for version : {0}", dccOptionNames[i]));
482-
483479
int versionToCheck = FindDCCVersion(dccOptionNames[i]);
484480
if (versionToCheck == -1)
485481
{
@@ -504,8 +500,7 @@ public int GetPreferredDCCApp()
504500
}
505501
}
506502

507-
Debug.Log(string.Format("found index : {0} {1}", result, dccOptionNames.Count));
508-
Debug.Assert(result > -1 && result < dccOptionNames.Count);
503+
//Debug.Assert(result > -1 && result < dccOptionNames.Count);
509504

510505
return result;
511506
}
@@ -590,8 +585,6 @@ private static void FindDCCInstalls() {
590585
// find dcc installation from vendor locations
591586
for (int i = 0; i < DCCVendorLocations.Length; i++)
592587
{
593-
Debug.Log( "checking vendor location for installs " + DCCVendorLocations[i] );
594-
595588
if (!Directory.Exists(DCCVendorLocations[i]))
596589
{
597590
// no autodesk products installed
@@ -602,8 +595,6 @@ private static void FindDCCInstalls() {
602595
var adskRoot = new System.IO.DirectoryInfo(DCCVendorLocations[i]);
603596
foreach (var productDir in adskRoot.GetDirectories())
604597
{
605-
Debug.Log( "product " + productDir.FullName );
606-
607598
var product = productDir.Name;
608599

609600
// Only accept those that start with 'maya' in either case.

0 commit comments

Comments
 (0)