Skip to content

Commit

Permalink
fix(Client): removed debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
st-vi committed Nov 3, 2023
1 parent 22373a8 commit e6f5fe4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion WebSocketClient/UVLPlayground/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
<title>UVL Playground</title>
Expand Down
5 changes: 0 additions & 5 deletions WebSocketClient/UVLPlayground/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,8 @@ const languageId = 'python';
let languageClient: MonacoLanguageClient;

const createUrl = (hostname: string, port: number, path: string, searchParams: Record<string, any> = {}, secure: boolean): string => {
console.log(secure);
const protocol = secure ? 'wss' : 'ws';
console.log(protocol);
const url = new URL(`${protocol}://${hostname}:${port}${path}`);
console.log(url);
console.log(location.protocol);
console.log(location);

for (let [key, value] of Object.entries(searchParams)) {
if (value instanceof Array) {
Expand Down

0 comments on commit e6f5fe4

Please sign in to comment.