Skip to content

Commit 32b2435

Browse files
committed
some logging and enable console again
1 parent d39de81 commit 32b2435

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Runtime/Code/Bundles/SystemRoot.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,14 +295,18 @@ List<IEnumerator> GetLoadList(AirshipPackage package) {
295295
}
296296
#endif
297297

298+
print("Wait.1");
298299
yield return this.WaitAll(loadLists[0].ToArray());
300+
print("Wait.2");
299301

300302
foreach (var ao in this.extraBundleLoadRequests) {
301303
if (!ao.isDone) {
302304
yield return ao;
303305
}
304306
}
305307

308+
print("Wait.3");
309+
306310
// Shader Variant Collections
307311
if (!preWarmedCoreShaders && RunCore.IsClient()) {
308312
preWarmedCoreShaders = true;

Runtime/DevConsole/Runtime/DevConsoleMono.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ public class DevConsoleMono : MonoBehaviour {
222222
/// </summary>
223223
private bool _init = false;
224224

225-
public bool loggingEnabled = false;
225+
public bool loggingEnabled = true;
226226

227227
#region Input fields
228228

0 commit comments

Comments
 (0)