diff --git a/src/vs/workbench/parts/debug/browser/breakpointsView.ts b/src/vs/workbench/parts/debug/browser/breakpointsView.ts index f4a1096b410..1e1eb738dad 100644 --- a/src/vs/workbench/parts/debug/browser/breakpointsView.ts +++ b/src/vs/workbench/parts/debug/browser/breakpointsView.ts @@ -591,7 +591,7 @@ export function getBreakpointMessageAndClassName(debugService: IDebugService, te } if (breakpoint.logMessage) { - if (process && breakpoint.condition && !process.session.capabilities.supportsLogPoints) { + if (process && !process.session.capabilities.supportsLogPoints) { return { className: 'debug-breakpoint-unsupported', message: nls.localize('logBreakpointUnsupported', "Logpoints not supported by this debug type"),