File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 8
8
from awslambdaric import __version__
9
9
from .lambda_runtime_exception import FaultException
10
10
11
- logging .basicConfig (
12
- format = "%(asctime)s %(levelname)s %(name)s %(threadName)s : %(message)s" ,
13
- level = logging .INFO ,
14
- )
15
-
16
11
def _user_agent ():
17
12
py_version = (
18
13
f"{ sys .version_info .major } .{ sys .version_info .minor } .{ sys .version_info .micro } "
@@ -26,8 +21,7 @@ def _user_agent():
26
21
27
22
runtime_client .initialize_client (_user_agent ())
28
23
except ImportError as import_error :
29
- logging .fatal ('Failed to import "runtime_client" module. %s' , import_error )
30
- raise import_error
24
+ logging .fatal ('Failed to import "runtime_client" cpp file. %s' , import_error )
31
25
32
26
from .lambda_runtime_marshaller import LambdaMarshaller
33
27
You can’t perform that action at this time.
0 commit comments