File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,9 +54,11 @@ private static FritzBot CreateFritzBot(IChatService chatService)
5454 FritzBot . RegisterCommands ( serviceCollection ) ;
5555
5656 var loggerService = LoggerFactory . Create ( configure =>
57- configure . AddConsole ( options => {
58- options . LogToStandardErrorThreshold = LogLevel . Information ;
57+ configure . AddSimpleConsole ( options =>
58+ {
59+ options . IncludeScopes = true ;
5960 } )
61+ . SetMinimumLevel ( LogLevel . Information )
6062 ) ;
6163 var svcProvider = serviceCollection . BuildServiceProvider ( ) ;
6264 var loggerFactory = svcProvider . GetService < ILoggerFactory > ( ) ;
Original file line number Diff line number Diff line change @@ -23,4 +23,5 @@ RUN dotnet publish -c Release -o /app
2323FROM base AS final
2424WORKDIR /app
2525COPY --from=publish /app .
26+ COPY --from=publish /src/Fritz.StreamTools/wwwroot/. /src/Fritz.StreamTools/wwwroot
2627ENTRYPOINT ["dotnet" , "Fritz.StreamTools.dll" ]
You can’t perform that action at this time.
0 commit comments