Application Logs
{#each services as service}
selectService(service, true)} class:bg-primary={selectedService === `${application.id}${service.name ? `-${service.name}` : ''}`} class:bg-coolgray-200={selectedService !== `${application.id}${service.name ? `-${service.name}` : ''}`} class="w-full rounded p-5 hover:bg-primary font-bold" > {application.id}{service.name ? `-${service.name}` : ''}
{/each}
{#if selectedService}
{#if logs.length === 0} {#if noContainer}
Container not found / exited.
{/if} {:else}
{followingLogs ? 'Following Logs...' : 'Follow Logs'}
{#if loadLogsInterval}
Streaming logs
{/if}
{#each logs as log}
{log + '\n'}
{/each}
{/if}
{/if}