Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Describe -IncludeTransport #45

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions TraceScripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,17 @@ Please follow the instructions below to capture trace logs generated by PlayFab
- Open an administrator command prompt or powershell session
- the script is unsigned, so unless your powershell is setup to with an "Unrestricted" execution policy, you will have to pass that along as well.
- Run the `Trace-PlayFabParty.ps1` script. The script requires one parameter which is a label to describe the trace attempt, for example "try1", e.g.:
```
powershell -ExecutionPolicy Unrestricted .\Trace-PlayFabParty.ps1 try1
```

```
powershell -ExecutionPolicy Unrestricted .\Trace-PlayFabParty.ps1 try1
```

- If you need more low-level connectivity information, add `-IncludeTransport` switch.

```
powershell -ExecutionPolicy Unrestricted .\Trace-PlayFabParty.ps1 try1 -IncludeTransport
```

- Run your game and get into the state to reproduce the issue
- Hit enter in the command prompt to stop the trace. It will tell you the name of the generated `.etl` file which contains the trace

Expand Down