remove console log message (#200684)

This commit is contained in:
Aaron Munger
2023-12-12 13:13:54 -08:00
committed by GitHub
parent 1972a1847d
commit 298b07637a

View File

@@ -57,7 +57,6 @@ export class LinkDetector {
* and added as a child of the returned <span>.
*/
linkify(text: string, options: LinkOptions, splitLines?: boolean): HTMLElement {
console.log('linkifyiiiiiing', JSON.stringify(options));
if (splitLines) {
const lines = text.split('\n');
for (let i = 0; i < lines.length - 1; i++) {