Skip to content

Commit d2ec4ec

Browse files
authored
Plugin log is not warning anymore
1 parent 727e6c0 commit d2ec4ec

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Source/Attributes/Private/AttributesModule.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ DEFINE_LOG_CATEGORY(LogAttributes)
99

1010
void FAttributesModule::StartupModule()
1111
{
12-
UE_LOG(LogAttributes, Warning, TEXT("Attributes: Log Started"));
12+
UE_LOG(LogAttributes, Log, TEXT("Attributes: Log Started"));
1313

1414
// This code will execute after your module is loaded into memory; the exact timing is specified in the .uplugin file per-module
1515

@@ -18,7 +18,7 @@ void FAttributesModule::StartupModule()
1818

1919
void FAttributesModule::ShutdownModule()
2020
{
21-
UE_LOG(LogAttributes, Warning, TEXT("Attributes: Log Ended"));
21+
UE_LOG(LogAttributes, Log, TEXT("Attributes: Log Ended"));
2222
// This function may be called during shutdown to clean up your module. For modules that support dynamic reloading,
2323
// we call this function before unloading the module.
2424

@@ -91,4 +91,4 @@ bool FAttributesModule::HandleSettingsSaved()
9191

9292
#undef LOCTEXT_NAMESPACE
9393

94-
IMPLEMENT_MODULE(FAttributesModule, Attributes)
94+
IMPLEMENT_MODULE(FAttributesModule, Attributes)

0 commit comments

Comments
 (0)