Skip to content

Commit 271d83b

Browse files
committed
Resolve nitpicks
Signed-off-by: Tomas Kislan <tomas@kislan.sk>
1 parent a5a5aa0 commit 271d83b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/platform/logging/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function initializeLoggers(options: {
6969

7070
if (options.addConsoleLogger) {
7171
// In CI there's no need for the label.
72-
registerLogger(new ConsoleLogger(isCI ? undefined : 'Jupyter Extension:'));
72+
registerLogger(new ConsoleLogger(isCI ? undefined : 'Deepnote Extension:'));
7373
}
7474

7575
return standardOutputChannel;

src/test/web/clientApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export class ClientAPI {
88
static url: string;
99
public static initialize() {
1010
console.log(
11-
`DEBUG_JUPYTER_SERVER_URI={workspace.getConfiguration('deepnote').get('DEBUG_JUPYTER_SERVER_URI')}`
11+
`DEBUG_JUPYTER_SERVER_URI=${workspace.getConfiguration('deepnote').get('DEBUG_JUPYTER_SERVER_URI')}`
1212
);
1313
const reportServerPor = workspace.getConfiguration('deepnote').get('REPORT_SERVER_PORT') as number;
1414

0 commit comments

Comments
 (0)