Fixed log spam during project creation

This commit is contained in:
Aruki 2019-02-11 01:57:29 -07:00
parent b49f19c386
commit ff021dcdda
1 changed files with 4 additions and 1 deletions

View File

@ -466,7 +466,10 @@ CResourceEntry* CResourceStore::CreateNewResource(const CAssetID& rkID, EResourc
TrackLoadedResource(pEntry);
}
debugf("CREATED NEW RESOURCE: [%s] %s", *rkID.ToString(), *pEntry->CookedAssetPath());
if (!ExistingResource)
{
debugf("CREATED NEW RESOURCE: [%s] %s", *rkID.ToString(), *pEntry->CookedAssetPath());
}
}
else