Browse Source

fix 修改文件

daiyihua 1 year ago
parent
commit
1649847b43

+ 10 - 0
ywt-platform-glasses-base/pom.xml

@@ -78,6 +78,16 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <!-- 去除指定的包,及其包下的类-->
+                        <exclude>**/proto/**</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 

+ 1 - 1
ywt-platform-glasses-web/src/main/resources/logback-spring.xml

@@ -22,7 +22,7 @@
         </encoder>
     </appender>
 
-    <logger name="org.hibernate" level="ERROR" />
+    <logger name="org.hibernate" level="INFO" />
     <!-- 日志输出级别 -->
     <root level="@logging.level.root@">
         <appender-ref ref="FILE" />