當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Logger.log方法代碼示例

本文整理匯總了TypeScript中vscode-chrome-debug-core.Logger.log方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Logger.log方法的具體用法?TypeScript Logger.log怎麽用?TypeScript Logger.log使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在vscode-chrome-debug-core.Logger的用法示例。


在下文中一共展示了Logger.log方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: attach

    public attach(args: any): Promise<void> {
        this.initializeLogging('attach-edge', arguments);
        Logger.log(`Attaching to Edge`);

        return this._launchAdapter(args).then((attachArgs:any) =>{
            return super.attach(attachArgs);
        });
    }
開發者ID:modulexcite,項目名稱:vscode-edge-debug,代碼行數:8,代碼來源:edgeDebugAdapter.ts

示例2: _launchAdapter

    //private _launchAdapter(url?:string, port?:number, adapterExePath?:string ):Promise<any> {
    private _launchAdapter(args?:any):Promise<any> {
        this.initializeLogging('launch-adapter', arguments);
        let adapterExePath = args.runtimeExecutable;
        if (!adapterExePath) {
            adapterExePath = edgeUtils.getAdapterPath();
        }

        Logger.log(`Launching adapter at: '${adapterExePath}', ${JSON.stringify(arguments) })`);
        // Check exists
        if (!fs.existsSync(adapterExePath)) {
            if (Utils.getPlatform() == Utils.Platform.Windows) {
                return Utils.errP(`No Edge Diagnostics Adapter was found. Install the Edge Diagnostics Adapter (https://github.com/Microsoft/edge-diagnostics-adapter) and specify a valid 'adapterExecutable' path`);
            } else {
                return Utils.errP(`Edge debugging is only supported on Windows 10.`);
            }
        }

        let adapterArgs:string[] = [];
        if (!args.port) {
            args.port = 9222;
        }
        // We always tell the adpater what port to listen on so there's no shared info between the adapter and the extension
        let portCmdArg = '--port=' + args.port;
        adapterArgs.push(portCmdArg);

        if(args.url){
            let launchUrlArg = '--launch='+ args.url;
            adapterArgs.push(launchUrlArg);
        }

        // The adapter might already be running if so don't spawn a new one
        return Utils.getURL(`http://127.0.0.1:${args.port}/json/version`).then((jsonResponse:any) => {
            try {
                const responseArray = JSON.parse(jsonResponse);
                let targetBrowser:string = responseArray.Browser;
                targetBrowser = targetBrowser.toLocaleLowerCase();
                if(targetBrowser.indexOf('edge') > -1){
                    return Promise.resolve(args);
                }

                return Utils.errP(`Sever for ${targetBrowser} already listening on :9222`);
            } catch (ex) {
                return Utils.errP(`Sever already listening on :9222 returned ${ex}`);
            }

        }, error => {
            Logger.log(`spawn('${adapterExePath}', ${JSON.stringify(adapterArgs) })`);
            this._adapterProc = childProcess.execFile(adapterExePath, adapterArgs, (err) => {
                    Logger.log(`Adapter error: ${err}`);
                    this.terminateSession();
                }, (data) => {
                    Logger.log(`Adapter output: ${data}`);
            });

            return Promise.resolve(args);
        });
    }
開發者ID:modulexcite,項目名稱:vscode-edge-debug,代碼行數:58,代碼來源:edgeDebugAdapter.ts

示例3:

        }, error => {
            Logger.log(`spawn('${adapterExePath}', ${JSON.stringify(adapterArgs) })`);
            this._adapterProc = childProcess.execFile(adapterExePath, adapterArgs, (err) => {
                    Logger.log(`Adapter error: ${err}`);
                    this.terminateSession();
                }, (data) => {
                    Logger.log(`Adapter output: ${data}`);
            });

            return Promise.resolve(args);
        });
開發者ID:modulexcite,項目名稱:vscode-edge-debug,代碼行數:11,代碼來源:edgeDebugAdapter.ts

示例4: launch

    public launch(args: any): Promise<void> {
        this.initializeLogging('launch-edge', arguments);
        Logger.log(`Launching Edge`);

        let launchUrl: string;
        if (args.file) {
            launchUrl = 'file:///' + path.resolve(args.cwd, args.file);
        } else if (args.url) {
            launchUrl = args.url;
        }

        return this._launchAdapter(args).then((attachArgs:any) =>{
            return super.attach(attachArgs);
        });
    }
開發者ID:modulexcite,項目名稱:vscode-edge-debug,代碼行數:15,代碼來源:edgeDebugAdapter.ts


注:本文中的vscode-chrome-debug-core.Logger.log方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。