Skip to content

Commit b7ca35f

Browse files
committed
Delete not needed UE_LOG. Fix tooltip for MaxRecordingDuration
1 parent 540a919 commit b7ca35f

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Source/BetaHubBugReporter/Private/BH_Manager.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,11 @@ UBH_ReportFormWidget* UBH_Manager::SpawnBugReportWidget(bool bTryCaptureMouse)
7070

7171
void UBH_Manager::OnLocalPlayerAdded(ULocalPlayer* Player)
7272
{
73-
UE_LOG(LogTemp, Warning, TEXT("LocalPlayer added!"));
74-
7573
Player->OnPlayerControllerChanged().AddUObject(this, &UBH_Manager::OnPlayerControllerChanged);
7674
}
7775

7876
void UBH_Manager::OnPlayerControllerChanged(APlayerController* PC)
7977
{
80-
UE_LOG(LogTemp, Warning, TEXT("Player Controller changed!"));
81-
8278
CurrentPlayerController = PC;
8379

8480
if (PC)

Source/BetaHubBugReporter/Public/BH_PluginSettings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class BETAHUBBUGREPORTER_API UBH_PluginSettings : public UObject
3939
int32 MaxRecordedFrames;
4040

4141
UPROPERTY(EditAnywhere, Config, Category="Settings",
42-
meta=(ToolTip="The maximum duration of the bug report video(in seconds)."))
42+
meta=(ToolTip="The maximum duration of the bug report video (in seconds)."))
4343
int32 MaxRecordingDuration;
4444

4545
UPROPERTY(EditAnywhere, Config, Category="Settings",

0 commit comments

Comments
 (0)