Skip to main content
To facilitate user-driven feedback or automatic feedback, you can use the submitFeedback method. Feedback can then be viewed in the Overlayed Dashboard.

Bug Reports

overlay.logger.submitFeedback("bug_report", {
	email: "[email protected]",
	message: "The overlay is not working",
});

Suggestions

overlay.logger.submitFeedback("suggestion", {
	email: "[email protected]",
	message: "I would like to see a new feature",
});

Feedback Data

You may optionally submit an email, username, and message with the data. You can also submit any additional data you want to include in the feedback by passing an extra object.
type OverlayedAppLoggingModuleSubmitFeedbackInfo = {
	email?: string | undefined;
	username?: string | undefined;
	message?: string | undefined;
	extra?: Record<string, unknown> | undefined;
};

Additional Files

If you have your own data to include in the feedback, for example the current stored state of a match, you can pass it as an object with the additionalFiles property:
overlay.logger.submitFeedback(
	"bug_report",
	{
		email: "[email protected]",
		message: "Issue description",
	},
	{
		additionalFiles: {
			"gameState.json": JSON.stringify(myGameState),
		},
	},
);

What Gets Included

When you submit feedback, the following are automatically included:
  • Your application’s logs (app.log)
  • Overlayed’s internal logs (main.log)
  • Any additional files you specify
  • The feedback information you provide
All logs are automatically zipped and attached to your feedback submission.