Skip to content

Commit 7a7dc76

Browse files
committed
Merge branch 'master' into dev
2 parents deca737 + c1a2cd6 commit 7a7dc76

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Libraries/src/Amazon.Lambda.RuntimeSupport/Bootstrap/LambdaBootstrap.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ public static HttpClient ConstructHttpClient()
254254
private void WriteUnhandledExceptionToLog(Exception exception)
255255
{
256256
#if NET6_0_OR_GREATER
257-
Client.ConsoleLogger.FormattedWriteLine(LogLevel.Error.ToString(), exception, null);
257+
Client.ConsoleLogger.FormattedWriteLine(Amazon.Lambda.RuntimeSupport.Helpers.LogLevelLoggerWriter.LogLevel.Error.ToString(), exception, null);
258258
#else
259259
Console.Error.WriteLine(exception);
260260
#endif

RELEASE.CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### Release 2024-09-29
2+
* **Amazon.Lambda.Annotations (1.5.2)**
3+
* Fixed issue with handling unicode characters when converting FromBody parameters from JSON to .NET type.
4+
15
### Release 2024-09-25
26
* **Amazon.Lambda.Annotations (1.5.1)**
37
* Added a 127 character limit on the Lambda function handler when the package type is set to zip.

0 commit comments

Comments
 (0)