You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Debug.LogError("Web AWS DynamoDB Data Handler is not compatible with current build target. Please switch your platform in Build Settings to WebGL if you wish to use this.");
410
+
Utilities.UXFDebugLogError("Web AWS DynamoDB Data Handler is not compatible with current build target. Please switch your platform in Build Settings to WebGL if you wish to use this.");
412
411
}
413
-
Debug.LogWarning("Unfortunately the Web AWS DynamoDB Data Handler cannot communicate with the database whilst running in the Unity Editor, because it relies on the AWS JavaScript SDK. To test data upload, create a build of your application and test it in a web browser. You can still test in the Unity Editor without database access.");
412
+
Utilities.UXFDebugLogWarning("Unfortunately the Web AWS DynamoDB Data Handler cannot communicate with the database whilst running in the Unity Editor, because it relies on the AWS JavaScript SDK. To test data upload, create a build of your application and test it in a web browser. You can still test in the Unity Editor without database access.");
Copy file name to clipboardExpand all lines: Assets/UXF/Scripts/Etc/AWSCredentials.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,12 +18,12 @@ public bool CheckIfValidFormat()
18
18
{
19
19
if(region==string.Empty)
20
20
{
21
-
Debug.LogError("Region in AWS Credentials is blank! Please supply your region (e.g. eu-west-2)");
21
+
Utilities.UXFDebugLogError("Region in AWS Credentials is blank! Please supply your region (e.g. eu-west-2)");
22
22
returnfalse;
23
23
}
24
24
if(cognitoIdentityPool==string.Empty)
25
25
{
26
-
Debug.LogError("Cognito Identity Pool in AWS Credentials is blank! Please supply your Cognito Identity Pool (e.g. eu-west-2:00000000-0000-0000-0000-000000000000)");
26
+
Utilities.UXFDebugLogError("Cognito Identity Pool in AWS Credentials is blank! Please supply your Cognito Identity Pool (e.g. eu-west-2:00000000-0000-0000-0000-000000000000)");
Debug.LogFormat("UXF is pre-processing your built scene '{0}' for platform '{1}' to make sure settings are compatible with the build... ",scene.name,report.summary.platform);
25
+
Utilities.UXFDebugLogFormat("UXF is pre-processing your built scene '{0}' for platform '{1}' to make sure settings are compatible with the build... ",scene.name,report.summary.platform);
26
26
27
27
varuis=scene
28
28
.GetRootGameObjects()
@@ -31,7 +31,7 @@ public void OnProcessScene(Scene scene, BuildReport report)
Debug.LogWarning("The UXF WebGL template is not selected in WebGL player settings! This may lead to errors. You can fix the is with the UXF Wizard (press UXF at the top, Show UXF Wizard).");
34
+
Utilities.UXFDebugLogWarning("The UXF WebGL template is not selected in WebGL player settings! This may lead to errors. You can fix the is with the UXF Wizard (press UXF at the top, Show UXF Wizard).");
35
35
}
36
36
37
37
foreach(varuiinuis)
@@ -79,7 +79,7 @@ public void OnProcessScene(Scene scene, BuildReport report)
79
79
80
80
if(!compatible&&!incompatible)
81
81
{
82
-
Debug.LogWarningFormat(
82
+
Utilities.UXFDebugLogWarningFormat(
83
83
"Warning: (Scene: {0}) - The data handler '{1}' has not reported either compatibility or incompatibility with platform group '{2}'. Use at your own risk!",
"Error trying to save data '{0}' of type UXFDataType.{1} associated with the Trial. The valid types for this method are {2}. Reverting to type UXFDataType.OtherTrialData.",
0 commit comments