We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51e02c5 commit dac61eeCopy full SHA for dac61ee
1 file changed
src/services/ldapClient.ts
@@ -131,7 +131,9 @@ async function ForwardSearch(groupName: string) {
131
// cb is for cache busting.
132
const requestUrl = `${process.env.SOURCE_PROXY}/api/get-source-team?teamName=${groupName}&cb=${Date.now()}`;
133
134
+ console.log(`Retrieving group (${groupName}) information from '${requestUrl}'`);
135
const result = await axios.get(requestUrl);
136
+ console.log(`Results for ${groupName}: ${result}`);
137
- return result.data;
138
+ return result.data as SearchAllResponse;
139
}
0 commit comments