1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-10 22:11:50 +02:00

Desktop: Resolves #11866: Rich Text Editor: Add less information to the log file when pasting (#12684)

This commit is contained in:
Henry Heino
2025-07-17 07:51:11 -07:00
committed by GitHub
parent 30aff62d08
commit a2af3f460a

View File

@@ -18,11 +18,12 @@ const logger = Logger.create('shouldPasteResources');
// instead the clipboard resources, which will contain the actual image.
//
// We have a lot of log statements so that if someone reports a bug we can ask
// them to check the console and give us the messages they have.
// them to check the console and give us the messages they have. However, to avoid
// including sensitive information in the logs, users will need to check the console,
// not the log file.
export default (pastedText: string, pastedHtml: string, resourceMds: string[]) => {
logger.info('Pasted text:', pastedText);
logger.info('Pasted HTML:', pastedHtml);
logger.info('Resources:', resourceMds);
const debugInformation = JSON.stringify({ pastedText, pastedHtml, resourceMds }, undefined, '\t');
logger.debug('Input data:', debugInformation);
if (pastedText) {
logger.info('Not pasting resources only because the clipboard contains plain text');