File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,11 @@ private static FritzBot CreateFritzBot(IChatService chatService)
54
54
FritzBot . RegisterCommands ( serviceCollection ) ;
55
55
56
56
var loggerService = LoggerFactory . Create ( configure =>
57
- configure . AddConsole ( options => {
58
- options . LogToStandardErrorThreshold = LogLevel . Information ;
57
+ configure . AddSimpleConsole ( options =>
58
+ {
59
+ options . IncludeScopes = true ;
59
60
} )
61
+ . SetMinimumLevel ( LogLevel . Information )
60
62
) ;
61
63
var svcProvider = serviceCollection . BuildServiceProvider ( ) ;
62
64
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
23
23
FROM base AS final
24
24
WORKDIR /app
25
25
COPY --from=publish /app .
26
+ COPY --from=publish /src/Fritz.StreamTools/wwwroot/. /src/Fritz.StreamTools/wwwroot
26
27
ENTRYPOINT ["dotnet" , "Fritz.StreamTools.dll" ]
You can’t perform that action at this time.
0 commit comments