Skip to content

Commit

Permalink
Add debug information to session start
Browse files Browse the repository at this point in the history
  • Loading branch information
iyannsch committed Nov 2, 2024
1 parent 5fd6063 commit ea839c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion node/landing-page/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ function App(): JSX.Element {
};

const handleStartSession = (appDefinition: string): void => {
console.log('Launching ' + appDefinition);
setLoading(true);
setError(undefined);

Expand All @@ -225,6 +224,9 @@ function App(): JSX.Element {
? undefined
: 'ws-' + selectedAppDefinition + '-' + repoName + '-' + username;


console.log('Launching ' + appDefinition + ' in workspace ' + workspace);

const requestOptions: RequestOptions = {
timeout: 60000,
retries: 5,
Expand Down

0 comments on commit ea839c2

Please sign in to comment.