### Log Entry: User Info Request
Source: https://github.com/trydofor/professional-mirana/blob/main/src/test/resources/log-stat.txt
This log entry captures a DEBUG level message indicating the processing of a POST request to '/user/info.json'. It shows the mapped handler and a subsequent ERROR message from the UserController regarding an issue with getting user info.
```Java
2021-07-11 00:15:58.183 DEBUG 24430 --- [XNIO-1 task-5] org.jooq.tools.LoggerListener : : +--------+
2021-07-11 00:15:58.183 DEBUG 24430 --- [XNIO-1 task-5] org.jooq.tools.LoggerListener : : |225.0900|
2021-07-11 00:15:58.183 DEBUG 24430 --- [XNIO-1 task-5] org.jooq.tools.LoggerListener : : +--------+
2021-07-11 00:15:58.183 DEBUG 24430 --- [XNIO-1 task-5] org.jooq.tools.LoggerListener : Fetched row(s) : 1
2021-07-11 00:15:58.184 DEBUG 24430 --- [XNIO-1 task-5] m.m.a.RequestResponseBodyMethodProcessor : Using 'application/json', given [application/json, text/plain, */*] and supported [applicatio
2021-07-11 00:15:58.184 DEBUG 24430 --- [XNIO-1 task-5] m.m.a.RequestResponseBodyMethodProcessor : Writing [SimpleResult{success=true, message='null', code='null', data=225.09}]
2021-07-11 00:15:58.184 DEBUG 24430 --- [XNIO-1 task-5] o.s.web.servlet.DispatcherServlet : Completed 200 OK
2021-07-11 00:16:22.884 DEBUG 24430 --- [XNIO-1 task-5] o.s.web.servlet.DispatcherServlet : POST "/user/info.json", parameters={}
2021-07-11 00:16:22.885 DEBUG 24430 --- [XNIO-1 task-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to com.jiayu.bbl.front.controller.UserController#userInfo()
2021-07-11 00:16:22.890 ERROR 24430 --- [XNIO-1 task-5] c.j.bbl.front.controller.UserController : get user info error !
```
--------------------------------
### Configure Snapshot Repository (Maven)
Source: https://github.com/trydofor/professional-mirana/blob/main/readme.md
This snippet demonstrates how to configure your Maven project to use the OSS Sonatype repository for accessing snapshot versions of the Professional Mirana library.
```xml
oss-sonatype
oss-sonatype
https://oss.sonatype.org/content/repositories/snapshots/
true
```
--------------------------------
### Configure Maven Repository for Mirana Snapshots
Source: https://github.com/trydofor/professional-mirana/blob/main/readme-zh.md
This snippet demonstrates how to configure your Maven settings to use the OSS Sonatype repository for accessing snapshot versions of the Mirana library. This allows you to use the latest development versions.
```xml
oss-sonatype
oss-sonatype
https://oss.sonatype.org/content/repositories/snapshots/
true
```
--------------------------------
### Add Mirana Dependency (Maven)
Source: https://github.com/trydofor/professional-mirana/blob/main/readme.md
This snippet shows how to add the Professional Mirana library to your Maven project by including its groupId, artifactId, and version in the pom.xml file.
```xml
pro.fessional
mirana
${mirana.version}
```
--------------------------------
### Add Mirana Dependency via Maven Central
Source: https://github.com/trydofor/professional-mirana/blob/main/readme-zh.md
This snippet shows how to include the Mirana library in your Maven project using Maven Central. Ensure you have the correct version specified.
```xml
pro.fessional
mirana
${mirana.version}
```
--------------------------------
### Fedex Rate Service Warning
Source: https://github.com/trydofor/professional-mirana/blob/main/src/test/resources/log-stat.txt
This log entry shows a WARN level message from the FedexRateService concerning PAYOR_ACCOUNT_PACKAGE. It details the TotalBase, TotalSur, and TotalNet values, indicating a potential issue or significant calculation in the rate service.
```Java
2021-07-11 00:35:42.397 WARN 24430 --- [pool-1355-thread-3] c.j.b.c.s.f.w.rate.FedexRateService : PAYOR_ACCOUNT_PACKAGE:TotalBase=1361.55,TotalSur=126.15,TotalNet=1487.7
```
--------------------------------
### Fedex Rate Service Shipment Warning
Source: https://github.com/trydofor/professional-mirana/blob/main/src/test/resources/log-stat.txt
This log entry captures a WARN level message from the FedexRateService for PAYOR_ACCOUNT_SHIPMENT, detailing the financial components of a shipment. It also includes a note suggesting that subsequent similar entries should be squashed.
```Java
2021-07-11 00:42:42.244 WARN 24430 --- [pool-1358-thread-3] c.j.b.c.s.f.w.rate.FedexRateService : PAYOR_ACCOUNT_SHIPMENT:TotalBase=64.0,TotalSur=5.95,TotalNet=69.95
2021-07-11 00:42:42.244 WARN 24430 --- [pool-1358-thread-3] should squash to the previous line
```
--------------------------------
### Fedex Rate Service Shipment Error
Source: https://github.com/trydofor/professional-mirana/blob/main/src/test/resources/log-stat.txt
This log entry indicates an ERROR level message from the FedexRateService for PAYOR_ACCOUNT_SHIPMENT, repeating the financial details of a shipment. This suggests a critical failure in processing or reporting shipment rates.
```Java
2021-07-11 00:42:42.244 ERROR 24430 --- [pool-1358-thread-3] c.j.b.c.s.f.w.rate.FedexRateService : PAYOR_ACCOUNT_SHIPMENT:TotalBase=64.0,TotalSur=5.95,TotalNet=69.95
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.