using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using IStation.Untity;
namespace IStation.DataDockingSocket
{
///
/// 生成原始信息辅助类
///
internal class SrcHelper
{
private const string _logName = "socket-kq-src";
///
/// 生成
///
public static void Src( byte[] bts)
{
if (bts == null || bts.Length < 1)
return;
var message = BitTransfer.ToString(bts);
LogHelper.Custom(_logName, message);
}
}
}