Skip to content

Commit

Permalink
removing console.log debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
Ximaz committed Feb 24, 2024
1 parent 37f4086 commit bd88633
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion dist/modules/CfxCitizenServer.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class CfxCitizenServerModule {
return this.instance;
}
async retrieve(id) {
console.log(`${types_1.CFX_MASTERLIST}${id}`);
try {
const response = await axios_1.default.get(types_1.CFX_MASTERLIST + id, {
headers: { "User-Agent": "Mozilla" },
Expand Down
1 change: 0 additions & 1 deletion src/modules/CfxCitizenServer.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export default class CfxCitizenServerModule {
}

async retrieve(id: string): Promise<CfxCitizenServer | undefined> {
console.log(`${CFX_MASTERLIST}${id}`)
try {
const response = await axios.get(CFX_MASTERLIST + id, {
headers: { "User-Agent": "Mozilla" },
Expand Down

0 comments on commit bd88633

Please sign in to comment.