Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
cleaned up build info logs (#109)
Browse files Browse the repository at this point in the history
# XRTK - Mixed Reality Toolkit Pull Request

## Overview
<!-- Please provide a clear and concise description of the pull request. -->
Removed logs when building

## Related Submodule Changes

<!--  Include any submodule related Pull Request links here -->
- XRTK/com.xrtk.core#836
  • Loading branch information
StephenHodgson authored May 11, 2021
1 parent 7e73c1a commit 292f869
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions Editor/BuildPipeline/LuminBuildInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ public override void OnPreProcessBuild(BuildReport report)
return;
}

if (MixedRealityToolkit.ActivePlatforms.Contains(BuildPlatform))
{
Debug.Log($"{nameof(LuminBuildInfo)}.{nameof(OnPreProcessBuild)}");
}

if (VersionCode.HasValue)
{
PlayerSettings.Lumin.versionCode = VersionCode.Value;
Expand Down Expand Up @@ -77,11 +72,6 @@ public override void OnPostProcessBuild(BuildReport buildReport)
return;
}

if (MixedRealityToolkit.ActivePlatforms.Contains(BuildPlatform))
{
Debug.Log($"{nameof(LuminBuildInfo)}.{nameof(OnPostProcessBuild)}");
}

if (Install && !Application.isBatchMode)
{
InstallOnDevice();
Expand Down

0 comments on commit 292f869

Please sign in to comment.