提交 2bc76c00 编写于 作者: Huan (李卓桓)'s avatar Huan (李卓桓)

code clean

上级 7edfae18
......@@ -25,7 +25,6 @@ import {
import {
MessagePayload,
// ContactQueryFilter,
ContactGender,
ContactType,
ContactPayload,
......@@ -33,9 +32,6 @@ import {
FriendshipPayload,
RoomPayload,
RoomMemberPayload,
// RoomQueryFilter,
WATCHDOG_TIMEOUT,
} from '../puppet/'
import {
Puppet,
......@@ -70,12 +66,6 @@ export interface MockRoomRawPayload {
}
export class PuppetMock extends Puppet {
/**
* Watchdog Timeout in Seconds
* if set this value, the default timeout value will be overwrited,
* and the parent Puppet class will use it to init watchdog
*/
protected [WATCHDOG_TIMEOUT] = 30
constructor(
public options: PuppetOptions,
......
......@@ -701,7 +701,7 @@ export class PadchatManager extends PadchatRpc {
const memberIdList = Object.keys(memberRawPayloadDict)
console.log('memberRawPayloadDict:', memberRawPayloadDict)
// console.log('memberRawPayloadDict:', memberRawPayloadDict)
log.verbose('PuppetPadchatManager', 'getRoomMemberIdList(%d) length=%d', roomId, memberIdList.length)
return memberIdList
}
......@@ -747,7 +747,7 @@ export class PadchatManager extends PadchatRpc {
const memberListPayload = await this.WXGetChatRoomMember(roomId)
if (!memberListPayload || !('user_name' in memberListPayload)) { // check user_name too becasue the server might return {}
console.log('memberListPayload', memberListPayload)
// console.log('memberListPayload', memberListPayload)
throw new Error('no memberListPayload')
}
......@@ -792,8 +792,7 @@ export class PadchatManager extends PadchatRpc {
// console.log('syncContactList:', syncContactList)
if (!Array.isArray(syncContactList) || syncContactList.length <= 0) {
console.log('syncContactList:', syncContactList)
log.error('PuppetPadchatManager', 'syncContactsAndRooms() cannot get array result!')
log.warn('PuppetPadchatManager', 'syncContactsAndRooms() cannot get array result: %s', JSON.stringify(syncContactList))
continue
}
......
......@@ -46,8 +46,6 @@ import {
FriendshipPayload,
FriendshipPayloadReceive,
WATCHDOG_TIMEOUT,
} from '../puppet/'
import {
......
......@@ -10,6 +10,5 @@ export {
} from './puppet'
export {
WATCHDOG_TIMEOUT,
YOU,
} from './schemas/puppet'
......@@ -68,7 +68,6 @@ import {
PuppetOptions,
Receiver,
WATCHDOG_TIMEOUT,
YOU,
} from './schemas/puppet'
......
......@@ -2,12 +2,6 @@ import {
MemoryCard,
} from 'memory-card'
/**
* Watchdog timeout
* in seconds
*/
export const WATCHDOG_TIMEOUT = Symbol('WATCHDOG_TIMEOUT')
/**
* This is used internally to as a placeholder for the bot name.
*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册