Better log
This commit is contained in:
		
							parent
							
								
									2f215ea34c
								
							
						
					
					
						commit
						6071fc7077
					
				
					 1 changed files with 5 additions and 4 deletions
				
			
		|  | @ -5,6 +5,7 @@ import config from '../config'; | |||
| import { createPerson, updatePerson } from './activitypub/models/person'; | ||||
| import { URL } from 'url'; | ||||
| import { remoteLogger } from './logger'; | ||||
| import chalk from 'chalk'; | ||||
| 
 | ||||
| const logger = remoteLogger.createSubLogger('resolve-user'); | ||||
| 
 | ||||
|  | @ -34,7 +35,7 @@ export default async (username: string, _host: string, option?: any, resync?: bo | |||
| 	if (user === null) { | ||||
| 		const self = await resolveSelf(acctLower); | ||||
| 
 | ||||
| 		logger.info(`return new remote user: ${acctLower}`); | ||||
| 		logger.succ(`return new remote user: ${chalk.magenta(acctLower)}`); | ||||
| 		return await createPerson(self.href); | ||||
| 	} | ||||
| 
 | ||||
|  | @ -76,7 +77,7 @@ logger.info(`return existing remote user: ${acctLower}`); | |||
| }; | ||||
| 
 | ||||
| async function resolveSelf(acctLower: string) { | ||||
| 	logger.info(`WebFinger for ${acctLower}`); | ||||
| 	logger.info(`WebFinger for ${chalk.yellow(acctLower)}`); | ||||
| 	const finger = await webFinger(acctLower); | ||||
| 	const self = finger.links.find(link => link.rel && link.rel.toLowerCase() === 'self'); | ||||
| 	if (!self) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue