com.gizwits.gizwifisdk.enumration.GizLogPrintLevel Java Examples

The following examples show how to use com.gizwits.gizwifisdk.enumration.GizLogPrintLevel. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GosApplication.java    From Gizwits-SmartBuld_Android with MIT License 3 votes vote down vote up
public void handleMessage(android.os.Message msg) {

			// 设置日志打印级别 (默认all且生成文件至SD卡)
			GizWifiSDK.sharedInstance().setLogLevel(GizLogPrintLevel.GizLogPrintAll);

			cloudServiceMap = GosDeploy.setCloudService();

			if (!cloudServiceMap.isEmpty()) {
				// 设置云端服务
				GizWifiSDK.sharedInstance().setCloudService(cloudServiceMap);
			}

		}
 
Example #2
Source File: MessageCenter.java    From GOpenSource_AppKit_Android_AS with MIT License 2 votes vote down vote up
public void handleMessage(android.os.Message msg) {
	GizWifiSDK.sharedInstance().setLogLevel(GizLogPrintLevel.GizLogPrintAll);

}
 
Example #3
Source File: MessageCenter.java    From gokit-android with MIT License 2 votes vote down vote up
public void handleMessage(android.os.Message msg) {
	GizWifiSDK.sharedInstance().setLogLevel(GizLogPrintLevel.GizLogPrintAll);

}