Skip to content

Commit 9834041

Browse files
committed
Improve metrics config comment clarity
1 parent 42849e8 commit 9834041

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

core/src/main/java/dev/faststats/core/SimpleMetrics.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -445,16 +445,19 @@ private static void save(Path file, UUID serverId, boolean enabled, boolean erro
445445
properties.setProperty("debug", Boolean.toString(debug));
446446

447447
var comment = """
448-
FastStats (https://faststats.dev) gathers basic information for plugin developers,
449-
# such as the number of users and total player count.
450-
# Keeping metrics enabled is recommended, but you can disable them if you prefer.
451-
# Enabling metrics does not affect performance,
452-
# and all data sent to FastStats is completely anonymous.
453-
448+
FastStats (https://faststats.dev) collects anonymous usage statistics for plugin developers.
449+
# This helps developers understand how their projects are used in the real world.
450+
#
451+
# No IP addresses, player data, or personal information is collected.
452+
# The server ID below is randomly generated and can be regenerated at any time.
453+
#
454+
# Enabling metrics has no noticeable performance impact.
455+
# Keeping metrics enabled is recommended, but you can disable them by setting 'enabled=false'.
456+
#
454457
# If you suspect a plugin is collecting personal data or bypassing the "enabled" option,
455-
# please report it to the FastStats team (https://faststats.dev/abuse).
456-
457-
# For more information, visit https://faststats.dev/info
458+
# please report it at: https://faststats.dev/abuse
459+
#
460+
# For more information, visit: https://faststats.dev/info
458461
""";
459462
properties.store(writer, comment);
460463
}

0 commit comments

Comments
 (0)