Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Fix underscoring of log message banner.

Co-authored-by: Mark Sujew <[email protected]>
  • Loading branch information
cdamus and msujew committed Jan 18, 2024
1 parent 640cb84 commit 05acbec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class HeadlessPluginHostRPC extends AbstractPluginHostRPC<HeadlessPluginM
protected readonly localizationExt: LocalizationExtImpl;

constructor() {
super('HEADLESSPLUGIN_HOST', undefined,
super('HEADLESS_PLUGIN_HOST', undefined,
{
$pluginManager: HEADLESSMAIN_RPC_CONTEXT.HOSTED_PLUGIN_MANAGER_EXT,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { ProcessTerminatedMessage, ProcessTerminateMessage } from '@theia/plugin
import { HeadlessPluginHostRPC } from './plugin-host-headless-rpc';
import pluginHostModule from './plugin-host-headless-module';

const banner = `HEADLESSPLUGIN_HOST(${process.pid}):`;
const banner = `HEADLESS_PLUGIN_HOST(${process.pid}):`;
console.log(banner, 'Starting instance');

// override exit() function, to do not allow plugin kill this node
Expand Down

0 comments on commit 05acbec

Please sign in to comment.