Skip to content

Commit b3b5e67

Browse files
committed
remove extra debug logs
1 parent 0730f71 commit b3b5e67

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Assets/FbxExporters/Editor/InstallIntegration.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ private static void _InstallMaya2017(bool verbose=true, bool commandsOnly=false)
158158
{
159159
// check if package installed
160160
string moduleTemplatePath = GetModuleTemplatePath(MAYA_VERSION);
161-
if (verbose) Debug.Log(moduleTemplatePath);
162161

163162
if (!System.IO.File.Exists(moduleTemplatePath))
164163
{
@@ -172,7 +171,6 @@ private static void _InstallMaya2017(bool verbose=true, bool commandsOnly=false)
172171

173172
// check for {USER} modules folder
174173
string modulePath = GetModulePath(MAYA_VERSION);
175-
if (verbose) Debug.Log(modulePath);
176174

177175
string moduleFilePath = System.IO.Path.Combine( modulePath, MODULE_FILENAME);
178176

@@ -230,7 +228,7 @@ private static void _InstallMaya2017(bool verbose=true, bool commandsOnly=false)
230228
// parse template, replace "{UnityProject}" with project path
231229
List<string> lines = ParseTemplateFile(moduleTemplatePath, Tokens);
232230

233-
if (verbose) Debug.Log(string.Format("Installing plugin module file to {0}",moduleFilePath));
231+
if (verbose) Debug.Log(string.Format("Copying plugin module file to {0}",moduleFilePath));
234232

235233
// write out .mod file
236234
WriteFile(moduleFilePath, lines);

0 commit comments

Comments
 (0)