Merge pull request #14898 from overleaf/tm-remove-debug-logs-pdf-detach-error

Remove debug statements that call potentially undefined logger

GitOrigin-RevId: b317a023057d271611cafbf65bbc192a4b82bfdd
This commit is contained in:
Thomas 2023-09-19 16:08:08 +02:00 committed by Copybot
parent b39effbb4b
commit c8c2f661b3
2 changed files with 0 additions and 10 deletions

View file

@ -26,11 +26,6 @@ function CompileTimeWarning() {
useEffect(() => {
if (deliveryLatencies && deliveryLatencies.compileTimeServerE2E) {
window.sl_console.log(
`[compileTimeout] compiledTimeServerE2E ${
deliveryLatencies.compileTimeServerE2E / 1000
}s`
)
// compile-timeout-20s test
if (deliveryLatencies.compileTimeServerE2E > 10000) {
eventTracking.sendMB('compile-time-warning-would-display', {

View file

@ -90,11 +90,6 @@ function CompileTimeoutMessages() {
useEffect(() => {
if (compiling || error || showLogs) return
window.sl_console.log(
`[compileTimeout] compiledTimeServerE2E ${
deliveryLatencies.compileTimeServerE2E / 1000
}s`
)
handleNewCompile(deliveryLatencies.compileTimeServerE2E)
}, [compiling, error, showLogs, deliveryLatencies, handleNewCompile])